Skip to content
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


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 @@ 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 <!--- x-release-please-version -->
- Package version: 1.1.2 <!--- x-release-please-version -->
- Generator version: 7.17.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

Expand Down
2 changes: 1 addition & 1 deletion prowlarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = [
Expand Down
2 changes: 1 addition & 1 deletion prowlarr/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion prowlarr/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"},
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 = "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",
Expand Down