Skip to content

chore(main): release 1.2.1 #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [1.2.1](https://github.com/devopsarr/radarr-py/compare/v1.2.0...v1.2.1) (2025-03-15)


### Bug Fixes

* **deps:** update dependency radarr/radarr to v5.18.4.9674 ([fab4e4c](https://github.com/devopsarr/radarr-py/commit/fab4e4c7d45f19cc8330c334b4fe184371943eaa))
* **deps:** update dependency radarr/radarr to v5.19.3.9730 ([0036469](https://github.com/devopsarr/radarr-py/commit/0036469b1740cb9a524687b35c79f11358bada4f))
* **deps:** update openapitools/openapi-generator-cli docker tag to v7.12.0 ([72b86c2](https://github.com/devopsarr/radarr-py/commit/72b86c2b58bcab2f5c968cb8ee9dc92c52977ebc))

## [1.2.0](https://github.com/devopsarr/radarr-py/compare/v1.1.1...v1.2.0) (2025-01-20)


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 @@ Radarr API docs
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v5.19.3.9730
- Package version: 1.2.0 <!--- x-release-please-version -->
- Package version: 1.2.1 <!--- x-release-please-version -->
- Generator version: 7.12.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 = "radarr"
version = "1.2.0" # x-release-please-version
version = "1.2.1" # x-release-please-version
description = "Radarr"
authors = ["OpenAPI Generator Community <[email protected]>"]
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion radarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "1.2.0" # x-release-please-version
__version__ = "1.2.1" # x-release-please-version

# import apis into sdk package
from radarr.api.alternative_title_api import AlternativeTitleApi
Expand Down
2 changes: 1 addition & 1 deletion radarr/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 = 'radarr-py/v1.2.0' # x-release-please-version
self.user_agent = 'radarr-py/v1.2.1' # x-release-please-version
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion radarr/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ def to_debug_report(self) -> str:
"Python Version: {pyversion}\n"\
"Version of the API: v5.19.3.9730\n"\
"SDK Package Version: {v}".\
format(env=sys.platform, pyversion=sys.version, v="1.2.0") # x-release-please-version
format(env=sys.platform, pyversion=sys.version, v="1.2.1") # 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 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 = "radarr-py"
VERSION = "1.2.0" # x-release-please-version
VERSION = "1.2.1" # x-release-please-version
PYTHON_REQUIRES = ">= 3.8"
REQUIRES = [
"urllib3 >= 1.25.3, < 3.0.0",
Expand Down