Skip to content

Commit

Permalink
chore: manually bump to 1.2.2 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmenoiaa authored May 9, 2024
1 parent 177ad7c commit 6234f3d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
uses: ncipollo/release-action@v1
with:
commit: main
tag: 1.2.1
tag: 1.2.2

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@apideck/python",
"version": "1.2.1",
"version": "1.2.2",
"description": "Apideck Python SDK",
"keywords": [
"apideck",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "apideck"
version = "1.2.1"
version = "1.2.2"
authors = [
{ name="Apideck", email="support@apideck.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/apideck/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"""


__version__ = "1.2.1"
__version__ = "1.2.2"

# import ApiClient
from apideck.api_client import ApiClient
Expand Down
2 changes: 1 addition & 1 deletion src/apideck/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/1.2.1/python'
self.user_agent = 'OpenAPI-Generator/1.2.2/python'

def __enter__(self):
return self
Expand Down
2 changes: 1 addition & 1 deletion src/apideck/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 10.4.1\n"\
"SDK Package Version: 1.2.1".\
"SDK Package Version: 1.2.2".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "apideck"
VERSION = "1.2.1"
VERSION = "1.2.2"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 6234f3d

Please sign in to comment.