mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Increment version to 0.5.3.
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
|
||||
## vNEXT
|
||||
|
||||
## v0.5.3
|
||||
|
||||
TODO: Finish 0.5.3 section
|
||||
|
||||
* `OAuth1Binding` improvements: #539
|
||||
* `OAuth1Binding.get` and `OAuth1Binding.call` now return the full response
|
||||
(including headers and statusCode), rather than just the data.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
meteor (0.5.2-1) unstable; urgency=low
|
||||
meteor (0.5.3-1) unstable; urgency=low
|
||||
|
||||
* Automated debian build.
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
## example.
|
||||
|
||||
URLBASE="https://d3sqy0vbqsdhku.cloudfront.net"
|
||||
VERSION="0.5.2"
|
||||
VERSION="0.5.3"
|
||||
PKGVERSION="${VERSION}-1"
|
||||
|
||||
UNAME=`uname`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": "0.5.2",
|
||||
"deb_version": "0.5.2-1",
|
||||
"rpm_version": "0.5.2-1",
|
||||
"version": "0.5.3",
|
||||
"deb_version": "0.5.3-1",
|
||||
"rpm_version": "0.5.3-1",
|
||||
"urlbase": "https://d3sqy0vbqsdhku.cloudfront.net"
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
Summary: Meteor platform and JavaScript application server
|
||||
Vendor: Meteor
|
||||
Name: meteor
|
||||
Version: 0.5.2
|
||||
Version: 0.5.3
|
||||
Release: 1
|
||||
License: MIT
|
||||
Group: Networking/WWW
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
exports.CURRENT_VERSION = "0.5.2";
|
||||
exports.CURRENT_VERSION = "0.5.3";
|
||||
|
||||
var fs = require("fs");
|
||||
var http = require("http");
|
||||
|
||||
@@ -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.2";
|
||||
var VERSION = "0.5.3";
|
||||
|
||||
var fs = require('fs');
|
||||
var path = require('path');
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
</div>
|
||||
<div id="main">
|
||||
<div id="top"></div>
|
||||
<h1 class="main-headline">Meteor 0.5.2</h1>
|
||||
<h1 class="main-headline">Meteor 0.5.3</h1>
|
||||
{{> introduction }}
|
||||
{{> concepts }}
|
||||
{{> api }}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
METEOR_VERSION = "0.5.2";
|
||||
METEOR_VERSION = "0.5.3";
|
||||
|
||||
Meteor.startup(function () {
|
||||
// XXX this is broken by the new multi-page layout. Also, it was
|
||||
|
||||
Reference in New Issue
Block a user