Skip to content

Commit

Permalink
Merge pull request #32 from devopsarr/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 1.0.0
  • Loading branch information
Fuochi committed Feb 19, 2024
2 parents 87325f2 + 001ba7f commit 833e6a6
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [1.0.0](https://github.com/devopsarr/prowlarr-py/compare/v0.4.1...v1.0.0) (2024-02-15)


### ⚠ BREAKING CHANGES

* **devopsarr/prowlarr-py#39:** update sdk generator to use pydantic 2.x

### Features

* **devopsarr/prowlarr-py#39:** update sdk generator to use pydantic 2.x ([11cddcf](https://github.com/devopsarr/prowlarr-py/commit/11cddcfdb32f5e4261f40e4ca80d49cf31845a0c))
* inject api version into readme ([8800dff](https://github.com/devopsarr/prowlarr-py/commit/8800dffe0707a034d7d49ed8e90b31453a65f8df))


### Bug Fixes

* **python:** wrong release versioning on configuration.py ([0d38c66](https://github.com/devopsarr/prowlarr-py/commit/0d38c66456f419445b125fe69db22cb1b8ec0533))
* release please commented lines ([86c87c7](https://github.com/devopsarr/prowlarr-py/commit/86c87c732fc56f4c5a9139573bcdf898544080ea))
* remove middle elements from method name ([9499a40](https://github.com/devopsarr/prowlarr-py/commit/9499a40b6376ffe450397f93f3e73b2f4eddb3d4))

## [0.4.1](https://github.com/devopsarr/prowlarr-py/compare/v0.4.0...v0.4.1) (2023-07-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 @@ Prowlarr API docs
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: v1.13.3.4273
- Package version: 0.4.1 <!--- x-release-please-version -->
- Package version: 1.0.0 <!--- x-release-please-version -->
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion prowlarr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "0.4.1" # x-release-please-version
__version__ = "1.0.0" # x-release-please-version

# import apis into sdk package
from prowlarr.api.api_info_api import ApiInfoApi
Expand Down
2 changes: 1 addition & 1 deletion prowlarr/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'prowlarr-py/v0.4.1' # x-release-please-version
self.user_agent = 'prowlarr-py/v1.0.0' # x-release-please-version
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion prowlarr/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def to_debug_report(self):
"Python Version: {pyversion}\n"\
"Version of the API: v1.13.3.4273\n"\
"SDK Package Version: {v}".\
format(env=sys.platform, pyversion=sys.version, v="0.4.1") # x-release-please-version
format(env=sys.platform, pyversion=sys.version, v="1.0.0") # x-release-please-version

def get_host_settings(self):
"""Gets an array of host settings
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "prowlarr"
version = "0.4.1" # x-release-please-version
version = "1.0.0" # x-release-please-version
description = "Prowlarr"
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
license = "GPL-3.0"
Expand Down

0 comments on commit 833e6a6

Please sign in to comment.