Skip to content

Commit

Permalink
Bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
n1mmy committed Jun 7, 2012
1 parent 1765ef0 commit eca3b91
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
8 changes: 6 additions & 2 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

## vNEXT

## v0.3.7

* Better parsing of `.html` template files
* Allow HTML comments (`<!-- -->`) at top level
* Allow whitespace anywhere in open/close tag
Expand All @@ -14,13 +16,16 @@
* `http` package bug fixes:
* Send correct Content-Type when POSTing `params` from the server. #172
* Correctly detect JSON response Content-Type when a charset is present.

* Support `Handlebars.SafeString`. #160

* Fix intermittent "Cursor is closed" mongo error.

* Fix "Cannot read property 'nextSibling' of null" error in certain nested templates. #142

* Add heartbeat timer on the client to notice when the server silently goes away.


## v0.3.6

* Rewrite event handling. `this` in event handlers now refers to the data context of the element that generated the event, *not* the top-level data context of the template where the event is declared.
Expand All @@ -34,7 +39,6 @@
* Update node.js to 0.6.17 to fix potential security issue.



## v0.3.5

* Fix 0.3.4 regression: Call event map handlers on bubbled events. #107
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.3.6-1) unstable; urgency=low
meteor (0.3.7-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="http://d3sqy0vbqsdhku.cloudfront.net"
VERSION="0.3.6"
VERSION="0.3.7"
PKGVERSION="${VERSION}-1"

UNAME=`uname`
Expand Down
8 changes: 4 additions & 4 deletions admin/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": "0.3.6",
"url": "https://d3sqy0vbqsdhku.cloudfront.net/meteor-package-Darwin-x86_64-0.3.6.tar.gz",
"version": "0.3.7",
"url": "https://d3sqy0vbqsdhku.cloudfront.net/meteor-package-Darwin-x86_64-0.3.7.tar.gz",

"deb_version": "0.3.6-1",
"rpm_version": "0.3.6-1",
"deb_version": "0.3.7-1",
"rpm_version": "0.3.7-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.3.6
Version: 0.3.7
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
@@ -1,4 +1,4 @@
exports.CURRENT_VERSION = "0.3.6";
exports.CURRENT_VERSION = "0.3.7";

var fs = require("fs");
var http = require("http");
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>
<h2 class="main-headline">Meteor 0.3.6</h1>
<h2 class="main-headline">Meteor 0.3.7</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.3.6";
METEOR_VERSION = "0.3.7";

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

0 comments on commit eca3b91

Please sign in to comment.