diff --git a/CHANGELOG.md b/CHANGELOG.md index 094ffdd..6dc1b7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 1.9.6 (2022-12-06) + +#### Bug Fixes + +* Fixed error where some repaired layers are not displayed + ## Version 1.9.5 (2022-10-18) #### Improvements diff --git a/RELEASENOTE.md b/RELEASENOTE.md index 61faf1f..0f7925f 100644 --- a/RELEASENOTE.md +++ b/RELEASENOTE.md @@ -1,5 +1,10 @@ # Release Notes +## Version 1.9.6 (2022-12-06) + +🐛 FIXES 🐛 +* Fixed error where some repaired layers are not displayed + ## Version 1.9.5 (2022-10-18) ⚡️ IMPROVEMENTS ⚡️ diff --git a/XYZHubConnector/__init__.py b/XYZHubConnector/__init__.py index 5a1694a..4fe3ae3 100644 --- a/XYZHubConnector/__init__.py +++ b/XYZHubConnector/__init__.py @@ -12,7 +12,7 @@ __copyright__ = "Copyright 2019, HERE Europe B.V." __license__ = "MIT" -__version__ = "1.9.5" +__version__ = "1.9.6" __maintainer__ = "Minh Nguyen" __email__ = "huyminh.nguyen@here.com" __status__ = "Development" diff --git a/XYZHubConnector/metadata.txt b/XYZHubConnector/metadata.txt index 7d0ccff..f603754 100644 --- a/XYZHubConnector/metadata.txt +++ b/XYZHubConnector/metadata.txt @@ -11,7 +11,7 @@ name=XYZ Hub Connector qgisMinimumVersion=3.0 description=Connect QGIS to your personal space on HERE Data Hub and to your Interactive Map Layer inside the HERE Platform. -version=1.9.5 +version=1.9.6 author=HERE Europe B.V. email=huyminh.nguyen@here.com @@ -42,10 +42,9 @@ experimental=False # deprecated flag (applies to the whole plugin, not just a single version) deprecated=False -changelog=Version 1.9.5 (2022-10-18) +changelog=Version 1.9.6 (2022-12-06) - ⚡️ IMPROVEMENTS ⚡️ - * Automatically repairs HERE vector layers with invalid GeoPackage storage - * Handles Platform catalog with linked project in addition to home project + 🐛 FIXES 🐛 + * Fixed error where some repaired layers are not displayed * .. more details on Github repos \ No newline at end of file diff --git a/XYZHubConnector/xyz_qgis/__init__.py b/XYZHubConnector/xyz_qgis/__init__.py index 43fa823..271b0f2 100644 --- a/XYZHubConnector/xyz_qgis/__init__.py +++ b/XYZHubConnector/xyz_qgis/__init__.py @@ -12,7 +12,7 @@ __copyright__ = "Copyright 2019, HERE Europe B.V." __license__ = "MIT" -__version__ = "1.9.5" +__version__ = "1.9.6" __maintainer__ = "Minh Nguyen" __email__ = "huyminh.nguyen@here.com" __status__ = "Development"