diff --git a/CHANGES.rst b/CHANGES.rst index 3a80538bc..b1a7ba7df 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changes ======= -0.9.0 (xxxx-xx-xx) +0.9.0 (2022-08-31) ------------------ - Implement text buffer for label layers (#79). @@ -10,6 +10,8 @@ Changes - Improve the detection of the current font when reopening style popup for title and text annotation. +- Fix import of `xlsx` files (#85). + 0.8.15 (2022-08-26) ------------------- diff --git a/client/package.json b/client/package.json index b790e49b6..34e8faa24 100644 --- a/client/package.json +++ b/client/package.json @@ -4,7 +4,7 @@ "minify": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js", "watch": "./node_modules/webpack/bin/webpack.js --watch" }, - "version": "0.8.15", + "version": "0.9.0", "dependencies": { "@turf/turf": "^6.5.0", "alertifyjs": "^1.13.1", diff --git a/documentation/src/changelog_fr.md b/documentation/src/changelog_fr.md index 9aca2c8a7..b16b16bb5 100644 --- a/documentation/src/changelog_fr.md +++ b/documentation/src/changelog_fr.md @@ -1,6 +1,6 @@ # Historique des versions et des changements effectués -#### 0.9.0 (xxxx-xx-xx) +#### 0.9.0 (2022-08-31) - Implémentation d'un tampon de texte pour les couches de labels (issue Github #79). @@ -8,6 +8,7 @@ - Améliorer la détection de la police d'écriture actuelle lors de la réouverture de la fenêtre contextuelle de style pour le titre et l'annotation de texte. +- Corrige l'import des fichiers `xlsx` (issue Github #85). #### 0.8.15 (2022-08-26) diff --git a/magrit_app/__init__.py b/magrit_app/__init__.py index 2ef7d6324..d4524379f 100755 --- a/magrit_app/__init__.py +++ b/magrit_app/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.8.15' +__version__ = '0.9.0'