Skip to content

Commit

Permalink
Bumping version number to v0.9.13 to avoid confusing anyone with a pr…
Browse files Browse the repository at this point in the history
…eviously spun v0.9.12 which was uploaded to the GitHub downloads page without any version change in the code or new git tag.
  • Loading branch information
jayallen committed Jul 1, 2010
1 parent 550bb3b commit 663d6da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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 = Melody
PRODUCT_VERSION = 0.9.11
PRODUCT_VERSION = 0.9.13
SCHEMA_VERSION = 4.0076
# Corresponds to MT 4.32
API_VERSION = 4.32
Expand Down
4 changes: 2 additions & 2 deletions lib/MT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ BEGIN {
# the Melody version for the dist name and other variables while
# still maintaining the API version ($VERSION) for plugins to
# test against for compatibility (i.e. "use MT 4.32;")
use version; our $VERSION = qv('0.9.11'); # MakeMaker stops here
use version; our $VERSION = qv('0.9.13'); # MakeMaker stops here
$PRODUCT_VERSION = $VERSION; # The rightful resting place
$VERSION = '4.32'; # The true API version
$SCHEMA_VERSION = '4.0076';
$PRODUCT_NAME = 'Melody';
$PRODUCT_CODE = 'OM';
$VERSION_ID = '0.9.11 (MT 4.32+)';
$VERSION_ID = '0.9.13 (MT 4.32+)';
$PORTAL_URL = 'http://openmelody.org';
}
else {
Expand Down
4 changes: 2 additions & 2 deletions php/mt.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

if('__MAKE_ME__' == '__MAKE_' . 'ME__') { # If make is not run
define('VERSION', '4.32');
define('VERSION_ID', '0.9.11 (MT 4.32+)');
define('PRODUCT_VERSION', '0.9.11');
define('VERSION_ID', '0.9.13 (MT 4.32+)');
define('PRODUCT_VERSION', '0.9.13');
define('PRODUCT_NAME', 'Melody');
} else {
define('VERSION', '__API_VERSION__');
Expand Down

0 comments on commit 663d6da

Please sign in to comment.