Skip to content

Commit b023f18

Browse files
authored
Merge pull request #45 from devopsarr/release-please--branches--main
chore(main): release 1.0.0
2 parents 7e74131 + ef4513c commit b023f18

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

CHANGELOG.md

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

3+
## [1.0.0](https://github.com/devopsarr/sonarr-py/compare/v0.10.0...v1.0.0) (2024-02-15)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **devopsarr/prowlarr-py#39:** update sdk generator to use pydantic 2.x
9+
10+
### Features
11+
12+
* **devopsarr/prowlarr-py#39:** update sdk generator to use pydantic 2.x ([8884625](https://github.com/devopsarr/sonarr-py/commit/8884625e16f41709364cc1a181b13eaaba82db01))
13+
* inject api version into readme ([231b4e4](https://github.com/devopsarr/sonarr-py/commit/231b4e4febec0565cdc2290a7afe4d303ceed07a))
14+
15+
16+
### Bug Fixes
17+
18+
* **python:** wrong release versioning on configuration.py ([6b70b2c](https://github.com/devopsarr/sonarr-py/commit/6b70b2ccc69b14896ade9522166d49c75fc3bf01))
19+
* release please commented lines ([550cb93](https://github.com/devopsarr/sonarr-py/commit/550cb93525935553f0627ae5e69dfaf229f191da))
20+
* remove middle elements from method name ([b235b41](https://github.com/devopsarr/sonarr-py/commit/b235b4140846448fea51cf17313f68153a276752))
21+
322
## [0.10.0](https://github.com/devopsarr/sonarr-py/compare/v0.9.0...v0.10.0) (2023-10-11)
423

524

README.md

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

66
- API version: v4.0.1.929
7-
- Package version: 0.10.0 <!--- x-release-please-version -->
7+
- Package version: 1.0.0 <!--- x-release-please-version -->
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sonarr"
3-
version = "0.10.0" # x-release-please-version
3+
version = "1.0.0" # x-release-please-version
44
description = "Sonarr"
55
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
66
license = "GPL-3.0"

sonarr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "0.10.0" # x-release-please-version
17+
__version__ = "1.0.0" # x-release-please-version
1818

1919
# import apis into sdk package
2020
from sonarr.api.api_info_api import ApiInfoApi

sonarr/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(
8787
self.default_headers[header_name] = header_value
8888
self.cookie = cookie
8989
# Set default User-Agent.
90-
self.user_agent = 'sonarr-py/v0.10.0' # x-release-please-version
90+
self.user_agent = 'sonarr-py/v1.0.0' # x-release-please-version
9191
self.client_side_validation = configuration.client_side_validation
9292

9393
def __enter__(self):

sonarr/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def to_debug_report(self):
409409
"Python Version: {pyversion}\n"\
410410
"Version of the API: v4.0.1.929\n"\
411411
"SDK Package Version: {v}".\
412-
format(env=sys.platform, pyversion=sys.version, v="0.10.0") # x-release-please-version
412+
format(env=sys.platform, pyversion=sys.version, v="1.0.0") # x-release-please-version
413413

414414
def get_host_settings(self):
415415
"""Gets an array of host settings

0 commit comments

Comments
 (0)