Skip to content

Commit

Permalink
Merge pull request #77 from devopsarr/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 1.1.0
  • Loading branch information
Fuochi authored Jan 24, 2025
2 parents ba7182a + 176d87c commit 8241df2
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

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


### Features

* remove broken root api path ([7f7aa0f](https://github.com/devopsarr/sonarr-py/commit/7f7aa0fdee97be86fadf0f9100d9831bd6866edc))


### Bug Fixes

* **deps:** update dependency sonarr/sonarr to v4.0.11.2680 ([70a29ba](https://github.com/devopsarr/sonarr-py/commit/70a29baf226724beadbf4171306d636be9ddc296))
* **deps:** update dependency sonarr/sonarr to v4.0.12.2823 ([93ff710](https://github.com/devopsarr/sonarr-py/commit/93ff7104a684c8e2c26bb0b23865d44bc5db9dc2))
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.10.0 ([b5dd6f8](https://github.com/devopsarr/sonarr-py/commit/b5dd6f8af0e5c8ce26c2914900703c1cf8f93075))
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.11.0 ([8a1e7ad](https://github.com/devopsarr/sonarr-py/commit/8a1e7ad0ad3df7361e7ee1767fe0d1beeea55710))

## [1.0.2](https://github.com/devopsarr/sonarr-py/compare/v1.0.1...v1.0.2) (2024-10-08)


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.12.2823
- Package version: 1.0.2 <!--- x-release-please-version -->
- Package version: 1.1.0 <!--- x-release-please-version -->
- Generator version: 7.11.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.0.2" # x-release-please-version
version = "1.1.0" # 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.0.2" # x-release-please-version
VERSION = "1.1.0" # 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.0.2" # x-release-please-version
__version__ = "1.1.0" # 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.0.2' # x-release-please-version
self.user_agent = 'sonarr-py/v1.1.0' # 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 @@ -535,7 +535,7 @@ def to_debug_report(self) -> str:
"Python Version: {pyversion}\n"\
"Version of the API: v4.0.12.2823\n"\
"SDK Package Version: {v}".\
format(env=sys.platform, pyversion=sys.version, v="1.0.2") # x-release-please-version
format(env=sys.platform, pyversion=sys.version, v="1.1.0") # x-release-please-version

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

0 comments on commit 8241df2

Please sign in to comment.