Skip to content

Commit

Permalink
Bumping Melody version number to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jayallen committed May 27, 2011
1 parent 5e22be9 commit cfc4285
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build/mt-dists/default.mk
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PRODUCT_NAME = Melody
PRODUCT_VERSION = 1.0.0
VERSION_ID = 1.0.0
PRODUCT_VERSION = 1.0.1
VERSION_ID = 1.0.1
SCHEMA_VERSION = 4.0078
# Corresponds to MT 4.35 (plus Melody enhancements)
API_VERSION = 4.35
API_VERSION = 4.36
BUILD_LANGUAGE = en_US
VERSION_SUFFIX =
PORTAL_URL = http://openmelody.org/
Expand Down
8 changes: 4 additions & 4 deletions lib/MT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ BEGIN {
# different version and their uses and the version module POD
# for details about the next line and its semantics:
# http://search.cpan.org/~jpeacock/version-0.85/lib/version.pod
use version 0.77; our $VERSION = version->declare("v1.0.0");
use version 0.77; our $VERSION = version->declare("v1.0.1");

# MakeMaker stops at the line above, so NOW, we swap the $VERSION
# to $PRODUCT_VERSION and assign $VERSION

$PRODUCT_VERSION = $VERSION; # The rightful resting place
$VERSION = '4.35'; # The true API version
$VERSION = '4.36'; # The true API version
$SCHEMA_VERSION = '4.0078';
$PRODUCT_NAME = 'Melody';
$PRODUCT_CODE = 'OM';
$VERSION_ID = '1.0.0';
$PORTAL_URL = 'http://openmelody.org';
$VERSION_ID = '1.0.1';
$PORTAL_URL = 'http://openmelody.org';
} ## end if ( '__MAKE_ME__' eq ...)
else {

Expand Down
6 changes: 3 additions & 3 deletions php/mt.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
# $Id$

if('__MAKE_ME__' == '__MAKE_' . 'ME__') { # If make is not run
define('VERSION', '4.35');
define('VERSION_ID', '1.0.0');
define('PRODUCT_VERSION', '1.0.0');
define('VERSION', '4.36');
define('VERSION_ID', '1.0.1');
define('PRODUCT_VERSION', '1.0.1');
define('PRODUCT_NAME', 'Melody');
} else {
define('VERSION', '__API_VERSION__');
Expand Down

0 comments on commit cfc4285

Please sign in to comment.