Skip to content

chore(main): release 1.1.1 #84

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.1.1](https://github.com/devopsarr/sonarr-py/compare/v1.1.0...v1.1.1) (2025-03-14)


### Bug Fixes

* **deps:** update dependency sonarr/sonarr to v4.0.13.2932 ([88879d2](https://github.com/devopsarr/sonarr-py/commit/88879d28b1960198e2c83aa7a6da9c6ca65b2d84))
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.12.0 ([9ffdd19](https://github.com/devopsarr/sonarr-py/commit/9ffdd196783e1a88a855dbe17b1280571c15bc5f))

## [1.1.0](https://github.com/devopsarr/sonarr-py/compare/v1.0.2...v1.1.0) (2025-01-20)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Sonarr API docs - The v3 API docs apply to both v3 and v4 versions of Sonarr. So
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v4.0.13.2932
- Package version: 1.1.0 <!--- x-release-please-version -->
- Package version: 1.1.1 <!--- x-release-please-version -->
- Generator version: 7.12.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sonarr"
version = "1.1.0" # x-release-please-version
version = "1.1.1" # x-release-please-version
description = "Sonarr"
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "sonarr-py"
VERSION = "1.1.0" # x-release-please-version
VERSION = "1.1.1" # x-release-please-version
PYTHON_REQUIRES = ">= 3.8"
REQUIRES = [
"urllib3 >= 1.25.3, < 3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion sonarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "1.1.0" # x-release-please-version
__version__ = "1.1.1" # x-release-please-version

# import apis into sdk package
from sonarr.api.api_info_api import ApiInfoApi
Expand Down
2 changes: 1 addition & 1 deletion sonarr/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'sonarr-py/v1.1.0' # x-release-please-version
self.user_agent = 'sonarr-py/v1.1.1' # x-release-please-version
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion sonarr/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ def to_debug_report(self) -> str:
"Python Version: {pyversion}\n"\
"Version of the API: v4.0.13.2932\n"\
"SDK Package Version: {v}".\
format(env=sys.platform, pyversion=sys.version, v="1.1.0") # x-release-please-version
format(env=sys.platform, pyversion=sys.version, v="1.1.1") # x-release-please-version

def get_host_settings(self) -> List[HostSetting]:
"""Gets an array of host settings
Expand Down