Skip to content

Commit

Permalink
Merge pull request #19 from devopsarr/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 0.7.0
  • Loading branch information
Fuochi authored May 17, 2023
2 parents f4d7222 + 1399a3f commit abd8859
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.7.0](https://github.com/devopsarr/sonarr-py/compare/v0.6.2...v0.7.0) (2023-05-17)


### Features

* **devopsarr/prowlarr-py#11:** add request timeout to config ([ff03ca7](https://github.com/devopsarr/sonarr-py/commit/ff03ca7014593f5d53a2346c16106602e3213aa6))
* pin openapi version and add version management ([0ea6441](https://github.com/devopsarr/sonarr-py/commit/0ea6441677bfcf51b0393fa61bb7dd173e9129f4))

## [0.6.2](https://github.com/devopsarr/sonarr-py/compare/v0.6.1...v0.6.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 @@ Sonarr 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.6.2
- Package version: 0.7.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 = "sonarr-py"
version = "0.6.2"
version = "0.7.0"
dependencies = [
"urllib3 >= 1.25.3",
"python-dateutil",
Expand Down
2 changes: 1 addition & 1 deletion sonarr/__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.6.2"
__version__ = "0.7.0"
# x-release-please-end

# import apis into sdk package
Expand Down
2 changes: 1 addition & 1 deletion sonarr/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 = 'sonarr-py/v0.6.2'
self.user_agent = 'sonarr-py/v0.7.0'
# x-release-please-end
self.client_side_validation = configuration.client_side_validation

Expand Down
2 changes: 1 addition & 1 deletion sonarr/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.6.2'
sdkversion = '0.7.0'
# x-release-please-end
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
Expand Down

0 comments on commit abd8859

Please sign in to comment.