Skip to content

Commit 66e6bb7

Browse files
committed
1.1.27
1 parent be8b8da commit 66e6bb7

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
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.26
5+
- Package version: 1.1.27
66

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

@@ -17,9 +17,9 @@ Python 3.7+
1717
If the python package is hosted on a repository, you can install directly using:
1818

1919
```sh
20-
pip install git+https://github.com/KlimAPI/klimapi-python.git
20+
pip install klimapi-python
2121
```
22-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/KlimAPI/klimapi-python.git`)
22+
(you may need to run `pip` with root permission: `sudo pip install klimapi-python`)
2323

2424
Then import the package:
2525
```python

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.26"
18+
release_note="1.1.27"
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.26"
17+
__version__ = "1.1.27"
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.26'
86+
self.user_agent = 'KlimAPI/klimapi-python/1.1.27'
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.26".\
402+
"SDK Package Version: 1.1.27".\
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.26"
3+
version = "1.1.27"
44
description = "KlimAPI - Calculation & Compensation API"
55
authors = ["KlimAPI Team <[email protected]>"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
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.26"
24+
VERSION = "1.1.27"
2525
PYTHON_REQUIRES = ">=3.7"
2626
REQUIRES = [
2727
"urllib3 >= 1.25.3, < 2.1.0",

0 commit comments

Comments
 (0)