Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade geodiff to 2.0.4 #218

Merged
merged 5 commits into from
Sep 12, 2024
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.9.3

- Added ```list-files``` CLI command for list of project files (#199 by @kaloyan13)
- Upgrade pygeodiff to 2.0.4 (#217)
- Do not use paginated endpoint for project version detail (#216)
- Improve client error handling (#209)

## 0.9.2

- Update rules when pushing with editor permission level (#208)
Expand Down
2 changes: 1 addition & 1 deletion mergin/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The version is also stored in ../setup.py
__version__ = "0.9.2"
__version__ = "0.9.3"

# There seems to be no single nice way to keep version info just in one place:
# https://packaging.python.org/guides/single-sourcing-package-version/
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='mergin-client',
version='0.9.2',
version='0.9.3',
url='https://github.com/MerginMaps/python-api-client',
license='MIT',
author='Lutra Consulting Ltd.',
Expand All @@ -18,7 +18,7 @@
platforms='any',
install_requires=[
'python-dateutil==2.8.2',
'pygeodiff==2.0.2',
'pygeodiff==2.0.4',
'pytz==2022.1',
'click==8.1.3',
],
Expand Down
Loading