diff --git a/CHANGELOG.md b/CHANGELOG.md index 827bf07d7..cb087ff1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,43 @@ + +## [2.10.1](https://github.com/pluginsglpi/formcreator/compare/v2.10.0..2.10.1) (2020-07-16) + + +### Bug Fixes + +* bad path for marketplace ([9e49a028](https://github.com/pluginsglpi/formcreator/commit/9e49a028)) +* keep backward compatibility with GLPI 9.4 ([dedde0b5](https://github.com/pluginsglpi/formcreator/commit/dedde0b5)) +* keep compatibility # [2.10.0](https://github.com/pluginsglpi/formcreator/compare/v2.10.0-rc.1...v2.10.0) (2020-06-23) diff --git a/package.json b/package.json index 0ad9b0824..2e559f0a9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "devDependencies": { - "standard-version": "^4.2.0", - "conventional-changelog-cli": "^1.3.5" + "standard-version": "^8.0", + "conventional-changelog-cli": "^2.0" }, "standard-version": { "skip": { @@ -11,5 +11,5 @@ } }, "dependencies": [], - "version": "2.10.1-dev" + "version": "2.10.1" } diff --git a/plugin.xml b/plugin.xml index 9f47c7eec..12f244453 100644 --- a/plugin.xml +++ b/plugin.xml @@ -320,6 +320,12 @@ Features 9.5 https://github.com/pluginsGLPI/formcreator/releases/download/v2.10.0/glpi-formcreator-2.10.0.tar.bz2 + + 2.10.1 + 9.4 + 9.5 + https://github.com/pluginsGLPI/formcreator/releases/download/v2.10.1/glpi-formcreator-2.10.1.tar.bz2 + ca_ES diff --git a/setup.php b/setup.php index 4a3263145..38cb5e9a3 100644 --- a/setup.php +++ b/setup.php @@ -31,11 +31,11 @@ global $CFG_GLPI; // Version of the plugin -define('PLUGIN_FORMCREATOR_VERSION', '2.10.1-dev'); +define('PLUGIN_FORMCREATOR_VERSION', '2.10.1'); // Schema version of this version define('PLUGIN_FORMCREATOR_SCHEMA_VERSION', '2.10'); // is or is not an official release of the plugin -define('PLUGIN_FORMCREATOR_IS_OFFICIAL_RELEASE', false); +define('PLUGIN_FORMCREATOR_IS_OFFICIAL_RELEASE', true); // Minimal GLPI version, inclusive define ('PLUGIN_FORMCREATOR_GLPI_MIN_VERSION', '9.4');