Skip to content

Commit

Permalink
Bump version. MTC-29652 (#3142)
Browse files Browse the repository at this point in the history
* 8.1.0 -> 8.3.0
  • Loading branch information
taitetsu committed May 17, 2024
1 parent 4b4a314 commit 55dbaf9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/mt-dists/default.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PRODUCT_NAME = Movable Type Core
PRODUCT_CODE = MT
PRODUCT_VERSION = 8.1
PRODUCT_VERSION = 8.3

VERSION_SUFFIX =

Expand Down
4 changes: 2 additions & 2 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 ) = ( '8.001000', '8.0000' );
( $VERSION, $SCHEMA_VERSION ) = ( '8.003000', '8.0000' );
( $PRODUCT_NAME, $PRODUCT_CODE, $PRODUCT_VERSION,
$VERSION_ID, $RELEASE_NUMBER, $PORTAL_URL,
$RELEASE_VERSION_ID
)
= (
'__PRODUCT_NAME__', '__PRODUCT_CODE__',
'8.1.0', '__PRODUCT_VERSION_ID__',
'8.3.0', '__PRODUCT_VERSION_ID__',
'__RELEASE_NUMBER__', '__PORTAL_URL__',
'__RELEASE_VERSION_ID__',
);
Expand Down
2 changes: 1 addition & 1 deletion mt-check.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ my $version = $cgi->param("version");
my $sess_id = $cgi->param('session_id');
$version ||= '__PRODUCT_VERSION_ID__';
if ( $version eq '__PRODUCT_VERSION' . '_ID__' ) {
$version = '8.1.0';
$version = '8.3.0';
}
my ( $mt, $LH );
my $lang = $cgi->param("language") || $cgi->param("__lang");
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', '8.001000');
define('PRODUCT_VERSION', '8.1.0');
define('VERSION', '8.003000');
define('PRODUCT_VERSION', '8.3.0');
define('DATA_API_DEFAULT_VERSION', '6');

$PRODUCT_NAME = '__PRODUCT_NAME__';
Expand Down

0 comments on commit 55dbaf9

Please sign in to comment.