Skip to content

Commit

Permalink
Merge pull request #51 from devopsarr/release-please--branches--main
Browse files Browse the repository at this point in the history
chore(main): release 1.0.1
  • Loading branch information
Fuochi committed Feb 21, 2024
2 parents f070802 + 1ea47fa commit e07ed33
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.0.1](https://github.com/devopsarr/prowlarr-py/compare/v1.0.0...v1.0.1) (2024-02-21)


### Bug Fixes

* map Field to ContractField to avoid pydantic issue ([60d03b2](https://github.com/devopsarr/prowlarr-py/commit/60d03b2f42e17d254c65f448d0728ee90b957865))

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


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: 1.0.0 <!--- x-release-please-version -->
- Package version: 1.0.1 <!--- 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__ = "1.0.0" # x-release-please-version
__version__ = "1.0.1" # 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/v1.0.0' # x-release-please-version
self.user_agent = 'prowlarr-py/v1.0.1' # 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="1.0.0") # x-release-please-version
format(env=sys.platform, pyversion=sys.version, v="1.0.1") # 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 = "1.0.0" # x-release-please-version
version = "1.0.1" # x-release-please-version
description = "Prowlarr"
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
license = "GPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "prowlarr-py"
VERSION = "1.0.0" # x-release-please-version
VERSION = "1.0.1" # x-release-please-version
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down

0 comments on commit e07ed33

Please sign in to comment.