Skip to content

Commit b60028a

Browse files
chore(main): release 1.1.2
1 parent ee6a223 commit b60028a

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.1.2](https://github.com/devopsarr/sonarr-py/compare/v1.1.1...v1.1.2) (2026-01-07)
4+
5+
6+
### Bug Fixes
7+
8+
* **deps:** update dependency sonarr/sonarr to v4.0.16.2944 ([ace7d58](https://github.com/devopsarr/sonarr-py/commit/ace7d584b653bf5af98a8ab9bda31a3d831576d9))
9+
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.17.0 ([2c0929c](https://github.com/devopsarr/sonarr-py/commit/2c0929c6e1bf37fc46b4d5d945d60863e3532e92))
10+
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.18.0 ([fee17ef](https://github.com/devopsarr/sonarr-py/commit/fee17ef7ad1399e864f660cf0ec2821000e302eb))
11+
312
## [1.1.1](https://github.com/devopsarr/sonarr-py/compare/v1.1.0...v1.1.1) (2025-09-02)
413

514

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Sonarr API docs - The v3 API docs apply to both v3 and v4 versions of Sonarr. So
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: v4.0.16.2944
7-
- Package version: 1.1.1 <!--- x-release-please-version -->
7+
- Package version: 1.1.2 <!--- x-release-please-version -->
88
- Generator version: 7.18.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sonarr"
3-
version = "1.1.1" # x-release-please-version
3+
version = "1.1.2" # x-release-please-version
44
description = "Sonarr"
55
authors = [
66
{name = "OpenAPI Generator Community",email = "team@openapitools.org"},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "sonarr-py"
24-
VERSION = "1.1.1" # x-release-please-version
24+
VERSION = "1.1.2" # x-release-please-version
2525
PYTHON_REQUIRES = ">= 3.9"
2626
REQUIRES = [
2727
"urllib3 >= 2.1.0, < 3.0.0",

sonarr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "1.1.1" # x-release-please-version
17+
__version__ = "1.1.2" # x-release-please-version
1818

1919
# Define package exports
2020
__all__ = [

sonarr/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = 'sonarr-py/v1.1.1' # x-release-please-version
94+
self.user_agent = 'sonarr-py/v1.1.2' # x-release-please-version
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

sonarr/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ def to_debug_report(self) -> str:
547547
"Python Version: {pyversion}\n"\
548548
"Version of the API: v4.0.16.2944\n"\
549549
"SDK Package Version: {v}".\
550-
format(env=sys.platform, pyversion=sys.version, v="1.1.1") # x-release-please-version
550+
format(env=sys.platform, pyversion=sys.version, v="1.1.2") # x-release-please-version
551551

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

0 commit comments

Comments
 (0)