From 3028971fa7a3d81974ada3bbde7a9d1fa2e70f0f Mon Sep 17 00:00:00 2001 From: "devopsarr[bot]" <127950054+devopsarr[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 20:48:24 +0000 Subject: [PATCH] chore(main): release 1.1.2 --- CHANGELOG.md | 7 +++++++ README.md | 2 +- prowlarr/__init__.py | 2 +- prowlarr/api_client.py | 2 +- prowlarr/configuration.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 7 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e30f6f..11ff021 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.2](https://github.com/devopsarr/prowlarr-py/compare/v1.1.1...v1.1.2) (2025-11-07) + + +### Bug Fixes + +* **deps:** update openapitools/openapi-generator-cli docker tag to v7.17.0 ([99207da](https://github.com/devopsarr/prowlarr-py/commit/99207da7828871864181f166d10153eaa7de62a5)) + ## [1.1.1](https://github.com/devopsarr/prowlarr-py/compare/v1.1.0...v1.1.1) (2025-09-02) diff --git a/README.md b/README.md index 85e09e1..b38fa58 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Prowlarr API docs This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: v2.0.5.5160 -- Package version: 1.1.1 +- Package version: 1.1.2 - Generator version: 7.17.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/prowlarr/__init__.py b/prowlarr/__init__.py index a4abda8..599655b 100644 --- a/prowlarr/__init__.py +++ b/prowlarr/__init__.py @@ -14,7 +14,7 @@ """ # noqa: E501 -__version__ = "1.1.1" # x-release-please-version +__version__ = "1.1.2" # x-release-please-version # Define package exports __all__ = [ diff --git a/prowlarr/api_client.py b/prowlarr/api_client.py index a5d5775..b4f61ce 100644 --- a/prowlarr/api_client.py +++ b/prowlarr/api_client.py @@ -91,7 +91,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'prowlarr-py/v1.1.1' # x-release-please-version + self.user_agent = 'prowlarr-py/v1.1.2' # x-release-please-version self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/prowlarr/configuration.py b/prowlarr/configuration.py index aa14de2..7ab5fc3 100644 --- a/prowlarr/configuration.py +++ b/prowlarr/configuration.py @@ -546,7 +546,7 @@ def to_debug_report(self) -> str: "Python Version: {pyversion}\n"\ "Version of the API: v2.0.5.5160\n"\ "SDK Package Version: {v}".\ - format(env=sys.platform, pyversion=sys.version, v="1.1.1") # x-release-please-version + format(env=sys.platform, pyversion=sys.version, v="1.1.2") # x-release-please-version def get_host_settings(self) -> List[HostSetting]: """Gets an array of host settings diff --git a/pyproject.toml b/pyproject.toml index 5999f71..525fc84 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "prowlarr" -version = "1.1.1" # x-release-please-version +version = "1.1.2" # x-release-please-version description = "Prowlarr" authors = [ {name = "OpenAPI Generator Community",email = "team@openapitools.org"}, diff --git a/setup.py b/setup.py index b2d445f..f1844ed 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "prowlarr-py" -VERSION = "1.1.1" # x-release-please-version +VERSION = "1.1.2" # x-release-please-version PYTHON_REQUIRES = ">= 3.9" REQUIRES = [ "urllib3 >= 2.1.0, < 3.0.0",