Merge branch 'master' into devel

This commit is contained in:
Nick Martin
2013-03-14 16:25:32 -07:00
10 changed files with 24 additions and 15 deletions

View File

@@ -1,6 +1,15 @@
## vNEXT
## v0.5.9
* Fix regression in 0.5.8 that prevented users from editing their own
profile. #809
* Fix regression in 0.5.8 where `Meteor.loggingIn()` would not update
reactively. #811
## v0.5.8
* Calls to the `update` and `remove` collection functions in untrusted code may

View File

@@ -1,4 +1,4 @@
meteor (0.5.8-1) unstable; urgency=low
meteor (0.5.9-1) unstable; urgency=low
* Automated debian build.

View File

@@ -5,7 +5,7 @@
## example.
URLBASE="https://d3sqy0vbqsdhku.cloudfront.net"
VERSION="0.5.8"
VERSION="0.5.9"
PKGVERSION="${VERSION}-1"
UNAME=`uname`

View File

@@ -1,6 +1,6 @@
{
"version": "0.5.8",
"deb_version": "0.5.8-1",
"rpm_version": "0.5.8-1",
"version": "0.5.9",
"deb_version": "0.5.9-1",
"rpm_version": "0.5.9-1",
"urlbase": "https://d3sqy0vbqsdhku.cloudfront.net"
}

View File

@@ -5,7 +5,7 @@
Summary: Meteor platform and JavaScript application server
Vendor: Meteor
Name: meteor
Version: 0.5.8
Version: 0.5.9
Release: 1
License: MIT
Group: Networking/WWW

View File

@@ -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.8";
exports.CURRENT_VERSION = testingUpdater ? "0.1.0" : "0.5.9";
var fs = require("fs");
var http = require("http");

View File

@@ -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.8";
var VERSION = "0.5.9";
var fs = require('fs');
var path = require('path');

View File

@@ -11,7 +11,7 @@
</div>
<div id="main">
<div id="top"></div>
<h1 class="main-headline">Meteor 0.5.8</h1>
<h1 class="main-headline">Meteor 0.5.9</h1>
{{> introduction }}
{{> concepts }}
{{> api }}

View File

@@ -1,4 +1,4 @@
METEOR_VERSION = "0.5.8";
METEOR_VERSION = "0.5.9";
Meteor.startup(function () {
// XXX this is broken by the new multi-page layout. Also, it was

View File

@@ -2,13 +2,13 @@
{{#better_markdown}}
## `coffeescript`
[CoffeeScript](http://jashkenas.github.com/coffee-script/) is a little language that compiles into JavaScript. It
provides a simple syntax without lots of braces and parentheses. The
code compiles one-to-one into the equivalent JS, and there is no
interpretation at runtime.
[CoffeeScript](http://coffeescript.org/) is a little language that
compiles into JavaScript. It provides a simple syntax without lots of
braces and parentheses. The code compiles one-to-one into the
equivalent JS, and there is no interpretation at runtime.
CoffeeScript is supported on both the client and the server. Files
ending with `.coffee` or `.litcoffee` are automatically compiled to
ending with `.coffee` or `.litcoffee` are automatically compiled to
JavaScript.
{{/better_markdown}}