Skip to content

Commit

Permalink
Cleanup for 2.1.9 release
Browse files Browse the repository at this point in the history
ajdonnison committed May 25, 2018
1 parent 305544f commit 173380b
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion db/upgrade_latest.php
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@
*/
function dPupgrade($from_version, $to_version, $last_updated) {

$latest_update = '20121115'; // Set to the latest upgrade date.
$latest_update = '20180525'; // Set to the latest upgrade date.

if (empty($last_updated) || empty($from_version)) {
$last_updated = '00000000';
@@ -164,6 +164,7 @@ function dPupgrade($from_version, $to_version, $last_updated) {
case '20110106':
case '20120814':
case '20130727':
case '20180525':
// TODO: Add new versions here. Keep this message above the default label.
default:
break;
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -6,6 +6,6 @@
// Set the version components separately.
$dp_version_major = 2;
$dp_version_minor = 1;
$dp_version_patch = 8; // Can be set to null if not used
$dp_version_patch = 9; // Can be set to null if not used
$dp_version_prepatch = null; // Set to null if a release version.
?>
1 change: 1 addition & 0 deletions install/versions.inc.php
Original file line number Diff line number Diff line change
@@ -22,4 +22,5 @@
'2.1.6',
'2.1.7',
'2.1.8',
'2.1.9'
);

0 comments on commit 173380b

Please sign in to comment.