Skip to content

Commit 23a069d

Browse files
committed
1.1.28
1 parent 66e6bb7 commit 23a069d

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
This API offers you the possibility to calculate and offset emissions, create checkout links, get statistics and much more.
33

44
- API version: v2
5-
- Package version: 1.1.27
5+
- Package version: 1.1.28
66

77
For more information, please visit [https://klimapi.com/resources/docs](https://klimapi.com/resources/docs)
88

git_push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
1515
fi
1616

1717
if [ "$release_note" = "" ]; then
18-
release_note="1.1.27"
18+
release_note="1.1.28"
1919
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
2020
fi
2121

klimapi_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "1.1.27"
17+
__version__ = "1.1.28"
1818

1919
# import apis into sdk package
2020
from klimapi_python.api.klim_api import KlimApi

klimapi_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def __init__(
8383
self.default_headers[header_name] = header_value
8484
self.cookie = cookie
8585
# Set default User-Agent.
86-
self.user_agent = 'KlimAPI/klimapi-python/1.1.27'
86+
self.user_agent = 'KlimAPI/klimapi-python/1.1.28'
8787
self.client_side_validation = configuration.client_side_validation
8888

8989
def __enter__(self):

klimapi_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def to_debug_report(self):
399399
"OS: {env}\n"\
400400
"Python Version: {pyversion}\n"\
401401
"Version of the API: v2\n"\
402-
"SDK Package Version: 1.1.27".\
402+
"SDK Package Version: 1.1.28".\
403403
format(env=sys.platform, pyversion=sys.version)
404404

405405
def get_host_settings(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "klimapi_python"
3-
version = "1.1.27"
3+
version = "1.1.28"
44
description = "KlimAPI - Calculation & Compensation API"
55
authors = ["KlimAPI Team <[email protected]>"]
66
license = "MIT"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "klimapi-python"
24-
VERSION = "1.1.27"
24+
VERSION = "1.1.28"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",
@@ -36,7 +36,7 @@
3636
description="KlimAPI - Calculation &amp; Compensation API",
3737
author="KlimAPI Team",
3838
author_email="[email protected]",
39-
url="https://pypi.org/p/klimapi-python",
39+
url="https://github.com/KlimAPI/klimapi-python",
4040
keywords=["klimapi"],
4141
install_requires=REQUIRES,
4242
packages=find_packages(exclude=["test", "tests"]),

0 commit comments

Comments
 (0)