Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='unit-python-sdk',
packages=['unit', 'unit.api', 'unit.models', 'unit.utils'],
version="0.29.0",
version="0.30.0",
license='Mozilla Public License 2.0',
description='This library provides a python wrapper to http://unit.co API. See https://docs.unit.co/',
author='unit.co',
Expand Down
2 changes: 1 addition & 1 deletion unit/utils/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_headers(self):
return {
"content-type": "application/vnd.api+json",
"authorization": f"Bearer {self.token}",
"X-UNIT-SDK": f"unit-python-sdk@v0.29.0"
"X-UNIT-SDK": f"unit-python-sdk@v0.30.0"
}

def set_api_url(self, api_url):
Expand Down