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.6.0
  • Loading branch information
Fuochi authored Mar 24, 2023
2 parents 9875a4e + 47ebd8a commit f1b5981
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.6.0](https://github.com/devopsarr/sonarr-py/compare/v0.5.0...v0.6.0) (2023-03-24)


### Features

* sdk generation alignment ([456dd81](https://github.com/devopsarr/sonarr-py/commit/456dd81ec9935886201efa9ca876b31db6fc5cc5))
* series lookup get to list ([b7c863e](https://github.com/devopsarr/sonarr-py/commit/b7c863e80d66e407fb98ad1557b7c97108618f28))


### Bug Fixes

* **#5:** httpuri to string ([4042f23](https://github.com/devopsarr/sonarr-py/commit/4042f237b3532aea2f75cdc1d7e3be4215d3f7b5))
* **#6:** use repr of query parameters ([9ebb6af](https://github.com/devopsarr/sonarr-py/commit/9ebb6afaae82678681e92f4ec89920ca0a561b8c))
* import validator for components with pattern ([e168f25](https://github.com/devopsarr/sonarr-py/commit/e168f2569b27c8c2bf333e931d9b4468d6aabcc3))
* timespan to string ([2091423](https://github.com/devopsarr/sonarr-py/commit/20914237b8aaf2e971772e26edecf8c20893db9a))

## [0.5.0](https://github.com/devopsarr/sonarr-py/compare/v0.4.0...v0.5.0) (2023-02-21)


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.5.0
- Package version: 0.6.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.5.0"
version = "0.6.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.5.0"
__version__ = "0.6.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.5.0'
self.user_agent = 'sonarr-py/v0.6.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 @@ -429,7 +429,7 @@ def to_debug_report(self):
"Python Version: {pyversion}\n"\
"Version of the API: 3.0.0\n"\
// x-release-please-start-version
"SDK Package Version: 0.5.0".\
"SDK Package Version: 0.6.0".\
// x-release-please-end
format(env=sys.platform, pyversion=sys.version)

Expand Down

0 comments on commit f1b5981

Please sign in to comment.