Actions
Anomalie #1811
ferméCehck version has been bumped in configuration file when releasing
Début:
24/03/2024
Echéance:
% réalisé:
100%
Temps estimé:
Version utilisée:
Vote:
Description
Several times, I forget to bump the release version in the configuration file.
It's currently not a real issue, user just cannot know which release is used. But in Galette 1.1; I've implemented a version checking to display to users a new release is available; and this feature relies on GALETE_VERSION.
The only place to check if tag and declared GALETTE_VERSION matches is in the release script.
Actions
#1
Mis à jour par Johan Cwiklinski il y a 8 mois
This issue has been discovered because I forgot to bump the release in latest Galette 1.0.4. As a quick fix, you can just replace it by hand in the @galette/config/versions.inc.php` file.
diff --git a/galette/config/versions.inc.php b/galette/config/versions.inc.php
index 27afb314b..f0ada0904 100644
--- a/galette/config/versions.inc.php
+++ b/galette/config/versions.inc.php
@@ -40,6 +40,6 @@ define('GALETTE_MYSQL_MIN', '5.7');
define('GALETTE_MARIADB_MIN', '10.4');
define('GALETTE_PGSQL_MIN', '11') ;
define('GALETTE_NIGHTLY', false);
-define('GALETTE_VERSION', 'v1.0.3');
+define('GALETTE_VERSION', 'v1.0.4');
define('GALETTE_COMPAT_VERSION', '1.0.0');
define('GALETTE_DB_VERSION', '0.960');
Actions
#2
Mis à jour par Johan Cwiklinski il y a 8 mois
- Statut changé de Nouveau à Résolu
- % réalisé changé de 0 à 100
Appliqué par commit 7f7937a73b8a762a4b49064bde0525b63b0d0202.
Actions