Skip to content

Commit be8b8da

Browse files
committed
1.1.26
1 parent 3aef495 commit be8b8da

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
with:
5858
name: python-package-distributions
5959
path: dist/
60-
- name: Publish distribution 📦 to PyPI
60+
- name: Publish to PyPI
6161
uses: pypa/gh-action-pypi-publish@release/v1
6262
release:
6363
name: Release

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.25
5+
- Package version: 1.1.26
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.25"
18+
release_note="1.1.26"
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.25"
17+
__version__ = "1.1.26"
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.25'
86+
self.user_agent = 'KlimAPI/klimapi-python/1.1.26'
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.25".\
402+
"SDK Package Version: 1.1.26".\
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.25"
3+
version = "1.1.26"
44
description = "KlimAPI - Calculation & Compensation API"
55
authors = ["KlimAPI Team <tech@klimapi.com>"]
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.25"
24+
VERSION = "1.1.26"
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="tech@klimapi.com",
39-
url="TBD",
39+
url="https://pypi.org/p/klimapi-python",
4040
keywords=["klimapi"],
4141
install_requires=REQUIRES,
4242
packages=find_packages(exclude=["test", "tests"]),

0 commit comments

Comments
 (0)