Skip to content

Commit

Permalink
Bump version number to 0.5.4 and write History.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
glasser committed Jan 8, 2013
1 parent a9a7179 commit 864371f
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@

## vNEXT

## v0.5.4

* Fix 0.5.3 regression: `meteor run` could fail on OSX 10.8 if environment
variables such as `DYLD_LIBRARY_PATH` are set.

## v0.5.3

* Add `--settings` argument to `meteor deploy` and `meteor run`. This
Expand Down
2 changes: 1 addition & 1 deletion admin/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
meteor (0.5.3-1) unstable; urgency=low
meteor (0.5.4-1) unstable; urgency=low

* Automated debian build.

Expand Down
2 changes: 1 addition & 1 deletion admin/install-s3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## example.

URLBASE="https://d3sqy0vbqsdhku.cloudfront.net"
VERSION="0.5.3"
VERSION="0.5.4"
PKGVERSION="${VERSION}-1"

UNAME=`uname`
Expand Down
6 changes: 3 additions & 3 deletions admin/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "0.5.3",
"deb_version": "0.5.3-1",
"rpm_version": "0.5.3-1",
"version": "0.5.4",
"deb_version": "0.5.4-1",
"rpm_version": "0.5.4-1",
"urlbase": "https://d3sqy0vbqsdhku.cloudfront.net"
}
2 changes: 1 addition & 1 deletion admin/meteor.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Summary: Meteor platform and JavaScript application server
Vendor: Meteor
Name: meteor
Version: 0.5.3
Version: 0.5.4
Release: 1
License: MIT
Group: Networking/WWW
Expand Down
2 changes: 1 addition & 1 deletion app/lib/updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// true. This will make it act as if it is at version 0.1.0 and use test URLs
// for update checks.
var testingUpdater = false;
exports.CURRENT_VERSION = testingUpdater ? "0.1.0" : "0.5.3";
exports.CURRENT_VERSION = testingUpdater ? "0.1.0" : "0.5.4";

var fs = require("fs");
var http = require("http");
Expand Down
2 changes: 1 addition & 1 deletion app/meteor/post-upgrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ try {
// XXX can't get this from updater.js because in 0.3.7 and before the
// updater didn't have the right NODE_PATH set. At some point we can
// remove this and just use updater.CURRENT_VERSION.
var VERSION = "0.5.3";
var VERSION = "0.5.4";

var fs = require('fs');
var path = require('path');
Expand Down
2 changes: 1 addition & 1 deletion docs/client/docs.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</div>
<div id="main">
<div id="top"></div>
<h1 class="main-headline">Meteor 0.5.3</h1>
<h1 class="main-headline">Meteor 0.5.4</h1>
{{> introduction }}
{{> concepts }}
{{> api }}
Expand Down
2 changes: 1 addition & 1 deletion docs/client/docs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
METEOR_VERSION = "0.5.3";
METEOR_VERSION = "0.5.4";

Meteor.startup(function () {
// XXX this is broken by the new multi-page layout. Also, it was
Expand Down

0 comments on commit 864371f

Please sign in to comment.