Skip to content

Commit

Permalink
chore: prepare release 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gmenoiaa committed Jul 25, 2024
1 parent d030ed9 commit 727ea5e
Show file tree
Hide file tree
Showing 8 changed files with 10 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.4.0
tag: 1.4.2

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,6 @@ target/

#Ipython Notebook
.ipynb_checkpoints

#IDE
.idea
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.4.0",
"version": "1.4.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.4.0"
version = "1.4.2"
authors = [
{ name="Apideck", email="[email protected]" },
]
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.4.0"
__version__ = "1.4.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.4.0/python'
self.user_agent = 'OpenAPI-Generator/1.4.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.7.0\n"\
"SDK Package Version: 1.4.0".\
"SDK Package Version: 1.4.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.4.0"
VERSION = "1.4.2"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 727ea5e

Please sign in to comment.