Skip to content

Commit

Permalink
Packaging up for 23.01
Browse files Browse the repository at this point in the history
  • Loading branch information
samilliken committed Jul 15, 2023
1 parent 1325506 commit 5ada9c9
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ GitHub, at http://github.com/opendcim/openDCIM/issues, where you can also downlo
the latest development version. However, it is not advised to pull from GitHub unless you
are simply testing, as some functionality can break between releases.

Changes in 23.02
----------------
* UI Bug Fixes related to jquery upgrades in 23.01

Changes in 23.01
----------------
* Primary focus was in compatibility with PHP 8.x
Expand Down
6 changes: 6 additions & 0 deletions container-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,12 @@ function upgrade(){
error_log("Applying database update from 21.01 to 23.01");
$results[]=applyupdate("db-21.01-to-23.01.sql");

$config->rebuild();
}
if($version=="21.01"){
error_log("Applying database update from 23.01 to 23.02");
$results[]=applyupdate("db-23.01-to-23.02.sql");

$config->rebuild();
}
}
Expand Down
5 changes: 5 additions & 0 deletions db-23.01-to-23.02.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
--- No actual db schema changes in this version, only a version bump
---

UPDATE fac_Config set Value="23.01" WHERE Parameter="Version";
6 changes: 6 additions & 0 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,12 @@ function upgrade(){
error_log("Applying database update from 21.01 to 23.01");
$results[]=applyupdate("db-21.01-to-23.01.sql");

$config->rebuild();
}
if($version=="23.01"){
error_log("Applying database update from 23.01 to 23.02");
$results[]=applyupdate("db-23.01-to-23.02.sql");

$config->rebuild();
}
}
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
define( "VERSION", "23.01" );
define( "VERSION", "23.02" );
?>

0 comments on commit 5ada9c9

Please sign in to comment.