diff --git a/CHANGELOG.md b/CHANGELOG.md index 5301e40..564af35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.2](https://github.com/devopsarr/lidarr-py/compare/v0.2.1...v0.2.2) (2023-03-27) + + +### Bug Fixes + +* **devopsarr/sonarr-py#6:** remove timespan validator ([b4c0396](https://github.com/devopsarr/lidarr-py/commit/b4c03962b24e2b10a233f2e0347631b64afaf208)) + ## [0.2.1](https://github.com/devopsarr/lidarr-py/compare/v0.2.0...v0.2.1) (2023-03-24) diff --git a/README.md b/README.md index 68fa8b5..e78cdc9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Lidarr API docs This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: [comment]: # (x-release-please-start-version) -- Package version: 0.2.1 +- Package version: 0.2.2 [comment]: # (x-release-please-end) - API version: 1.0.0 diff --git a/lidarr/__init__.py b/lidarr/__init__.py index 339f5d6..ff9f76f 100644 --- a/lidarr/__init__.py +++ b/lidarr/__init__.py @@ -15,7 +15,7 @@ from __future__ import absolute_import # x-release-please-start-version -__version__ = "0.2.1" +__version__ = "0.2.2" # x-release-please-end # import apis into sdk package diff --git a/lidarr/api_client.py b/lidarr/api_client.py index fd884c9..eff367c 100644 --- a/lidarr/api_client.py +++ b/lidarr/api_client.py @@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.cookie = cookie # Set default User-Agent. # x-release-please-start-version - self.user_agent = 'lidarr-py/v0.2.1' + self.user_agent = 'lidarr-py/v0.2.2' # x-release-please-end self.client_side_validation = configuration.client_side_validation diff --git a/lidarr/configuration.py b/lidarr/configuration.py index 14c6348..7da2c5a 100644 --- a/lidarr/configuration.py +++ b/lidarr/configuration.py @@ -425,7 +425,7 @@ def to_debug_report(self): :return: The report for debugging. """ # x-release-please-start-version - sdkversion = '0.2.1' + sdkversion = '0.2.2' # x-release-please-end return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ diff --git a/pyproject.toml b/pyproject.toml index 671e4ab..4ff3949 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ [project] name = "lidarr-py" -version = "0.2.1" +version = "0.2.2" dependencies = [ "urllib3 >= 1.25.3", "python-dateutil",