Skip to content

Commit

Permalink
Bump version. MTC-29652
Browse files Browse the repository at this point in the history
* 7.903.0 -> 7.905.0
* r.5502 -> r.5504
  • Loading branch information
taitetsu committed May 15, 2024
1 parent b122ee3 commit 1a8f117
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build/mt-dists/default.mk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PRODUCT_NAME = Movable Type Core
PRODUCT_VERSION = 7.903
PRODUCT_VERSION = 7.905

VERSION_SUFFIX =

Expand Down
6 changes: 3 additions & 3 deletions lib/MT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ our $plugins_installed;
BEGIN {
$plugins_installed = 0;

( $VERSION, $SCHEMA_VERSION ) = ( '7.903', '7.0055' );
( $VERSION, $SCHEMA_VERSION ) = ( '7.905', '7.0055' );
( $PRODUCT_NAME, $PRODUCT_CODE, $PRODUCT_VERSION,
$VERSION_ID, $RELEASE_NUMBER, $PORTAL_URL,
$RELEASE_VERSION_ID
)
= (
'__PRODUCT_NAME__', 'MT',
'7.903.0', '__PRODUCT_VERSION_ID__',
'7.905.0', '__PRODUCT_VERSION_ID__',
'__RELEASE_NUMBER__', '__PORTAL_URL__',
'__RELEASE_VERSION_ID__',
);
Expand All @@ -68,7 +68,7 @@ BEGIN {
}

if ( $RELEASE_VERSION_ID eq '__RELEASE' . '_VERSION_ID__' ) {
$RELEASE_VERSION_ID = 'r.5502';
$RELEASE_VERSION_ID = 'r.5504';
}

$DebugMode = 0;
Expand Down
4 changes: 2 additions & 2 deletions mt-check.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ my $version = $cgi->param("version");
my $sess_id = $cgi->param('session_id');
$version ||= '__PRODUCT_VERSION_ID__';
if ( $version eq '__PRODUCT_VERSION' . '_ID__' ) {
$version = '7.903.0';
$version = '7.905.0';
}
my $release_version = '__RELEASE_VERSION_ID__';
if ( $release_version eq '__RELEASE' . '_VERSION_ID__' ) {
$release_version = 'r.5502';
$release_version = 'r.5504';
}

my ( $mt, $LH );
Expand Down
4 changes: 2 additions & 2 deletions php/mt.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
*/
require_once('lib/class.exception.php');

define('VERSION', '7.903');
define('PRODUCT_VERSION', '7.903.0');
define('VERSION', '7.905');
define('PRODUCT_VERSION', '7.905.0');
define('DATA_API_DEFAULT_VERSION', '6');

$PRODUCT_NAME = '__PRODUCT_NAME__';
Expand Down

0 comments on commit 1a8f117

Please sign in to comment.