Skip to content

Commit 176d87c

Browse files
chore(main): release 1.1.0
1 parent ba7182a commit 176d87c

File tree

7 files changed

+21
-6
lines changed

7 files changed

+21
-6
lines changed

CHANGELOG.md

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

3+
## [1.1.0](https://github.com/devopsarr/sonarr-py/compare/v1.0.2...v1.1.0) (2025-01-20)
4+
5+
6+
### Features
7+
8+
* remove broken root api path ([7f7aa0f](https://github.com/devopsarr/sonarr-py/commit/7f7aa0fdee97be86fadf0f9100d9831bd6866edc))
9+
10+
11+
### Bug Fixes
12+
13+
* **deps:** update dependency sonarr/sonarr to v4.0.11.2680 ([70a29ba](https://github.com/devopsarr/sonarr-py/commit/70a29baf226724beadbf4171306d636be9ddc296))
14+
* **deps:** update dependency sonarr/sonarr to v4.0.12.2823 ([93ff710](https://github.com/devopsarr/sonarr-py/commit/93ff7104a684c8e2c26bb0b23865d44bc5db9dc2))
15+
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.10.0 ([b5dd6f8](https://github.com/devopsarr/sonarr-py/commit/b5dd6f8af0e5c8ce26c2914900703c1cf8f93075))
16+
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.11.0 ([8a1e7ad](https://github.com/devopsarr/sonarr-py/commit/8a1e7ad0ad3df7361e7ee1767fe0d1beeea55710))
17+
318
## [1.0.2](https://github.com/devopsarr/sonarr-py/compare/v1.0.1...v1.0.2) (2024-10-08)
419

520

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.12.2823
7-
- Package version: 1.0.2 <!--- x-release-please-version -->
7+
- Package version: 1.1.0 <!--- x-release-please-version -->
88
- Generator version: 7.11.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
[tool.poetry]
22
name = "sonarr"
3-
version = "1.0.2" # x-release-please-version
3+
version = "1.1.0" # x-release-please-version
44
description = "Sonarr"
55
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
66
license = "GPL-3.0"

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.0.2" # x-release-please-version
24+
VERSION = "1.1.0" # x-release-please-version
2525
PYTHON_REQUIRES = ">= 3.8"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 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.0.2" # x-release-please-version
17+
__version__ = "1.1.0" # x-release-please-version
1818

1919
# import apis into sdk package
2020
from sonarr.api.api_info_api import ApiInfoApi

sonarr/api_client.py

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

9696
def __enter__(self):

sonarr/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def to_debug_report(self) -> str:
535535
"Python Version: {pyversion}\n"\
536536
"Version of the API: v4.0.12.2823\n"\
537537
"SDK Package Version: {v}".\
538-
format(env=sys.platform, pyversion=sys.version, v="1.0.2") # x-release-please-version
538+
format(env=sys.platform, pyversion=sys.version, v="1.1.0") # x-release-please-version
539539

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

0 commit comments

Comments
 (0)