Skip to content

Commit abd8859

Browse files
authored
Merge pull request #19 from devopsarr/release-please--branches--main
chore(main): release 0.7.0
2 parents f4d7222 + 1399a3f commit abd8859

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [0.7.0](https://github.com/devopsarr/sonarr-py/compare/v0.6.2...v0.7.0) (2023-05-17)
4+
5+
6+
### Features
7+
8+
* **devopsarr/prowlarr-py#11:** add request timeout to config ([ff03ca7](https://github.com/devopsarr/sonarr-py/commit/ff03ca7014593f5d53a2346c16106602e3213aa6))
9+
* pin openapi version and add version management ([0ea6441](https://github.com/devopsarr/sonarr-py/commit/0ea6441677bfcf51b0393fa61bb7dd173e9129f4))
10+
311
## [0.6.2](https://github.com/devopsarr/sonarr-py/compare/v0.6.1...v0.6.2) (2023-03-27)
412

513

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Sonarr API docs
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
[comment]: # (x-release-please-start-version)
7-
- Package version: 0.6.2
7+
- Package version: 0.7.0
88

99
[comment]: # (x-release-please-end)
1010
- API version: 3.0.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[project]
44
name = "sonarr-py"
5-
version = "0.6.2"
5+
version = "0.7.0"
66
dependencies = [
77
"urllib3 >= 1.25.3",
88
"python-dateutil",

sonarr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from __future__ import absolute_import
1616

1717
# x-release-please-start-version
18-
__version__ = "0.6.2"
18+
__version__ = "0.7.0"
1919
# x-release-please-end
2020

2121
# import apis into sdk package

sonarr/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.cookie = cookie
7979
# Set default User-Agent.
8080
# x-release-please-start-version
81-
self.user_agent = 'sonarr-py/v0.6.2'
81+
self.user_agent = 'sonarr-py/v0.7.0'
8282
# x-release-please-end
8383
self.client_side_validation = configuration.client_side_validation
8484

sonarr/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def to_debug_report(self):
430430
:return: The report for debugging.
431431
"""
432432
# x-release-please-start-version
433-
sdkversion = '0.6.2'
433+
sdkversion = '0.7.0'
434434
# x-release-please-end
435435
return "Python SDK Debug Report:\n"\
436436
"OS: {env}\n"\

0 commit comments

Comments
 (0)