Skip to content

Commit 6234f3d

Browse files
authored
chore: manually bump to 1.2.2 (#69)
1 parent 177ad7c commit 6234f3d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
uses: ncipollo/release-action@v1
2121
with:
2222
commit: main
23-
tag: 1.2.1
23+
tag: 1.2.2
2424

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apideck/python",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Apideck Python SDK",
55
"keywords": [
66
"apideck",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "apideck"
7-
version = "1.2.1"
7+
version = "1.2.2"
88
authors = [
99
{ name="Apideck", email="support@apideck.com" },
1010
]

src/apideck/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"""
1111

1212

13-
__version__ = "1.2.1"
13+
__version__ = "1.2.2"
1414

1515
# import ApiClient
1616
from apideck.api_client import ApiClient

src/apideck/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7676
self.default_headers[header_name] = header_value
7777
self.cookie = cookie
7878
# Set default User-Agent.
79-
self.user_agent = 'OpenAPI-Generator/1.2.1/python'
79+
self.user_agent = 'OpenAPI-Generator/1.2.2/python'
8080

8181
def __enter__(self):
8282
return self

src/apideck/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def to_debug_report(self):
427427
"OS: {env}\n"\
428428
"Python Version: {pyversion}\n"\
429429
"Version of the API: 10.4.1\n"\
430-
"SDK Package Version: 1.2.1".\
430+
"SDK Package Version: 1.2.2".\
431431
format(env=sys.platform, pyversion=sys.version)
432432

433433
def get_host_settings(self):

src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from setuptools import setup, find_packages # noqa: H301
1212

1313
NAME = "apideck"
14-
VERSION = "1.2.1"
14+
VERSION = "1.2.2"
1515
# To install the library, run the following
1616
#
1717
# python setup.py install

0 commit comments

Comments
 (0)