diff --git a/CHANGELOG.md b/CHANGELOG.md index afa9508..8c62cb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.8.0 + +- Added workspace API to list available workspaces, creating a new workspace and listing projects (#150, #152, #158) +- Removed check for available storage when syncing to personal namespace (#159) +- Added storing project IDs to project metadata files (#154) + ## 0.7.4 - Added set_tables_to_skip() to optionally configure which tables to ignore in geodiff diff --git a/mergin/version.py b/mergin/version.py index d2f3740..7aad94a 100644 --- a/mergin/version.py +++ b/mergin/version.py @@ -1,5 +1,5 @@ # The version is also stored in ../setup.py -__version__ = "0.7.4" +__version__ = "0.8.0" # 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/ diff --git a/setup.py b/setup.py index 163215c..7d18894 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='mergin-client', - version='0.7.4', + version='0.8.0', url='https://github.com/MerginMaps/mergin-py-client', license='MIT', author='Lutra Consulting Ltd.',