Skip to content

Commit

Permalink
Version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nioc committed Feb 28, 2020
1 parent 292aea0 commit 81508e9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Own my money is a simple way to stay on top of your banking from any web browser
- data input from OFX or JSON file from you bank,
- transactions classification (manual and automatic using data mining),
- budget repartition analysis,
- joint accounts,
- transactions annotations for your memory,
- export transactions to CSV,
- progressive web app (offline access),
Expand Down
2 changes: 1 addition & 1 deletion server/configuration/configuration.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[system]
; OwnMyMoney version
version = 0.10.2
version = 0.11.0
; release channel (stable or beta)
releaseChannel = stable
; installation status
Expand Down
10 changes: 8 additions & 2 deletions server/lib/Step.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ private static function getUpdateSteps($installedVersion, $language)
case '0.8.0':
case '0.9.0':
case '0.9.1':
$hasDatabaseAlter = true;
break;
case '0.10.0':
case '0.10.1':
case '0.10.2':
$hasDatabaseAlter = true;
break;
default:
return $lang->getMessage('unknownInstalledVersion');
Expand Down Expand Up @@ -465,6 +465,12 @@ public function process($fields)
case '0.9.1':
$sql = file_get_contents($_SERVER['DOCUMENT_ROOT'].'/server/configuration/alter-database-0.10.0.sql');
$connection->exec($sql);
// no break
case '0.10.0':
case '0.10.1':
case '0.10.2':
$sql = file_get_contents($_SERVER['DOCUMENT_ROOT'].'/server/configuration/alter-database-0.11.0.sql');
$connection->exec($sql);

//cumulative scripts, break will be shared
break;
Expand Down

0 comments on commit 81508e9

Please sign in to comment.