Skip to content

Commit

Permalink
Merge pull request #8 from devopsarr/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 0.2.1
  • Loading branch information
Fuochi committed Mar 24, 2023
2 parents 8550984 + efee8f2 commit bfd230e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.2.1](https://github.com/devopsarr/radarr-py/compare/v0.2.0...v0.2.1) (2023-03-24)


### Bug Fixes

* **devopsarr/radarr-py#6:** indentation error on config ([f6f429b](https://github.com/devopsarr/radarr-py/commit/f6f429bbeeec287dca65ed3fb32da03ce10f16ab))

## [0.2.0](https://github.com/devopsarr/radarr-py/compare/v0.1.0...v0.2.0) (2023-03-23)


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:

[comment]: # (x-release-please-start-version)
- Package version: 0.2.0
- Package version: 0.2.1

[comment]: # (x-release-please-end)
- API version: 3.0.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[project]
name = "radarr-py"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"urllib3 >= 1.25.3",
"python-dateutil",
Expand Down
2 changes: 1 addition & 1 deletion radarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from __future__ import absolute_import

# x-release-please-start-version
__version__ = "0.2.0"
__version__ = "0.2.1"
# x-release-please-end

# import apis into sdk package
Expand Down
2 changes: 1 addition & 1 deletion radarr/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 'radarr-py/v0.2.0'
self.user_agent = 'radarr-py/v0.2.1'
# x-release-please-end
self.client_side_validation = configuration.client_side_validation

Expand Down
2 changes: 1 addition & 1 deletion radarr/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def to_debug_report(self):
:return: The report for debugging.
"""
# x-release-please-start-version
sdkversion = '0.2.0'
sdkversion = '0.2.1'
# x-release-please-end
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
Expand Down

0 comments on commit bfd230e

Please sign in to comment.