Skip to content

Commit

Permalink
Merge pull request #13 from devopsarr/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 0.3.0
  • Loading branch information
Fuochi authored May 29, 2023
2 parents 4cb314f + 546f650 commit 78663ac
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.3.0](https://github.com/devopsarr/radarr-py/compare/v0.2.2...v0.3.0) (2023-05-25)


### Features

* **devopsarr/prowlarr-py#11:** add request timeout to config ([87eb757](https://github.com/devopsarr/radarr-py/commit/87eb757431ac1ef56ceca2d78c43480e4c27f97a))
* pin openapi version and add version management ([7bc8334](https://github.com/devopsarr/radarr-py/commit/7bc8334a6094ed411955dd394bd64cbd35927f3f))

## [0.2.2](https://github.com/devopsarr/radarr-py/compare/v0.2.1...v0.2.2) (2023-03-27)


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.2
- Package version: 0.3.0

[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.2"
version = "0.3.0"
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.2"
__version__ = "0.3.0"
# 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.2'
self.user_agent = 'radarr-py/v0.3.0'
# 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 @@ -430,7 +430,7 @@ def to_debug_report(self):
:return: The report for debugging.
"""
# x-release-please-start-version
sdkversion = '0.2.2'
sdkversion = '0.3.0'
# x-release-please-end
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
Expand Down

0 comments on commit 78663ac

Please sign in to comment.