Skip to content
Permalink
Browse files
Version bump - 1.0.0-rc.1
  • Loading branch information
wagenet committed Feb 15, 2013
1 parent 0582243 commit 55b420732a33907aecb2f273b90bb1e4a94d016c
Show file tree
Hide file tree
Showing 15 changed files with 68 additions and 31 deletions.
@@ -1,3 +1,40 @@
*Ember 1.0.0-rc.1 (February 15, 2013)*

* Upgrade to Handlebars 1.0.0-rc.3
* Update RSVP.js
* Update router.js
* Support 0 values for input tags
* Support for jQuery 1.9
* ArrayController now defaults to empty array
* Added Vagrant support for setting up a development environment
* Adds {{each itemController="..."}}
* Fix issues where route transitions would not register properly
* Initial support for Application#reset
* Fix handling of keywords in bind helpers
* Better handling of DOM properties
* Better handling of complex {{#if}} targets
* {{linkTo}} shouldn't change view context
* Router#send accepts multiple params
* Provide a view's template name for debugging
* Create activate and deactivate hooks for router
* {{action}} targets are now looked up lazily
* The model for Route#render is now bound
* Improvements to ContainerView
* Added 'pattern' attribute to text field for iOS.
* CollectionView context is now its content
* Various enhancements to bound helpers: adds multiple property support to bound helpers, adds bind-able options hash properties, adds {{unbound}} helper support to render unbound form of helpers.
* Add App.inject
* Add Ember.EnumberableUtils.intersection
* Deprecate Controller#controllerFor in favour of Controller#needs
* Adds `bubbles` property to Ember.TextField
* Allow overriding of Ember.Router#handleURL
* Allow libraries loaded before Ember to tie into Ember load hooks
* Fixed behavior with Route#render and named outlets
* Fix bug where history location does not account for root URL
* Allow redirecting from mid-route
* Support string literals as param for {{linkTo}} and {{action}}
* Empty object proxies are no longer truthy in {{#if}}

*Ember 1.0.0-pre.4 (January 17, 2013)*

* Add {{partial}}
@@ -1 +1 @@
1.0.0-pre.4
1.0.0-rc.1
@@ -2,7 +2,7 @@
"name": "ember",
"bpm": "1.0.0",
"dependencies": {
"ember": "1.0.0-pre.4"
"ember": "1.0.0-rc.1"
},
"dependencies:development": {
"spade-qunit": "~> 1.0.0"
@@ -4,11 +4,11 @@
"description": "Extensions to the Handlebars templating engine for use with Ember. These extensions make Handlebars aware of property observing, which allows it to automatically update the DOM when the referenced properties change. It also provides Handlebars helpers for creating Ember views and working with collections.",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",
"dependencies": {
"ember-views": "1.0.0-pre.4",
"ember-states": "1.0.0-pre.4",
"ember-routing": "1.0.0-pre.4"
"ember-views": "1.0.0-rc.1",
"ember-states": "1.0.0-rc.1",
"ember-routing": "1.0.0-rc.1"
},

"directories": {
@@ -4,7 +4,7 @@
"description": "Debugging helpers for Ember",
"homepage": "http://www.emberjs.com",
"author": "Peter Wagenet",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"directories": {
"lib": "lib"
@@ -4,7 +4,7 @@
"description": "A programmatic compiler for Handlebars with the few syntax extensions supported by Ember with minimal dependencies",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",
"dependencies": {
"spade": "~> 1.0.0",
"handlebars": "~> 1.0.0.beta.6"
@@ -4,11 +4,11 @@
"description": "Extensions to the Handlebars templating engine for use with Ember. These extensions make Handlebars aware of property observing, which allows it to automatically update the DOM when the referenced properties change. It also provides Handlebars helpers for creating Ember views and working with collections.",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",
"dependencies": {
"spade": "~> 1.0.0",
"ember-handlebars-compiler", "1.0.0-pre.2",
"ember-views": "1.0.0-pre.4",
"ember-views": "1.0.0-rc.1",
"metamorph": "~> 1.0.0"
},

@@ -22,7 +22,7 @@
@class Ember
@static
@version 1.0.0-pre.4
@version 1.0.0-rc.1
*/

if ('undefined' === typeof Ember) {
@@ -49,10 +49,10 @@ Ember.toString = function() { return "Ember"; };
/**
@property VERSION
@type String
@default '1.0.0-pre.4'
@default '1.0.0-rc.1'
@final
*/
Ember.VERSION = '1.0.0-pre.4';
Ember.VERSION = '1.0.0-rc.1';

/**
Standard environmental variables. You can define these in a global `ENV`
@@ -4,7 +4,7 @@
"summary": "JavaScript on Steroids",
"homepage": "http://github.com/emberjs/ember.js",
"author": "Charles Jolley",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"dependencies": {
"spade": "~> 1.0.0"
@@ -4,16 +4,16 @@
"description": "The Ember routing system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"directories": {
"lib": "lib"
},

"dependencies": {
"spade": "~> 1.0",
"ember-views": "1.0.0-pre.4",
"ember-states": "1.0.0-pre.4"
"ember-views": "1.0.0-rc.1",
"ember-states": "1.0.0-rc.1"
},

"dependencies:development": {
@@ -4,15 +4,15 @@
"description": "The Ember routing system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"directories": {
"lib": "lib"
},

"dependencies": {
"spade": "~> 1.0",
"ember-views": "1.0.0-pre.4"
"ember-views": "1.0.0-rc.1"
},

"dependencies:development": {
@@ -5,15 +5,15 @@

"homepage": "http://emberjs.com",
"author": "Charles Jolley",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"directories": {
"lib": "lib"
},

"dependencies": {
"spade": "~> 1.0",
"ember-metal": "1.0.0-pre.4",
"ember-metal": "1.0.0-rc.1",
"container": "1.0.0-pre.2"
},

@@ -4,15 +4,15 @@
"description": "The Ember state management system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"directories": {
"lib": "lib"
},

"dependencies": {
"spade": "~> 1.0",
"ember-runtime": "1.0.0-pre.4"
"ember-runtime": "1.0.0-rc.1"
},

"dependencies:development": {
@@ -4,7 +4,7 @@
"description": "The Ember view system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"directories": {
"lib": "lib"
@@ -13,7 +13,7 @@
"dependencies": {
"spade": "~> 1.0",
"jquery": "~> 1.7",
"ember-runtime": "1.0.0-pre.4",
"ember-runtime": "1.0.0-rc.1",
"container": "1.0.0-pre.2"
},

@@ -4,15 +4,15 @@
"summary": "Ember - JavaScript Application Framework",
"homepage": "http://github.com/emberjs/ember.js",
"author": "Charles Jolley",
"version": "1.0.0-pre.4",
"version": "1.0.0-rc.1",

"dependencies": {
"spade": "~> 1.0.0",
"ember-runtime": "1.0.0-pre.4",
"ember-views": "1.0.0-pre.4",
"ember-states": "1.0.0-pre.4",
"ember-routing": "1.0.0-pre.4",
"ember-handlebars": "1.0.0-pre.4"
"ember-runtime": "1.0.0-rc.1",
"ember-views": "1.0.0-rc.1",
"ember-states": "1.0.0-rc.1",
"ember-routing": "1.0.0-rc.1",
"ember-handlebars": "1.0.0-rc.1"
},

"directories": {

13 comments on commit 55b4207

@GerritWanderer
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulations!

@KasperTidemann
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome! Such a great job. Excited about this! :)

@wildchild
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't use it with handlebars-rc3. #2083

@bradfol
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congrats!

@darthdeus
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️

@freemanoid
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hoooooray finally!

@ogonki-vetochki
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

YEAH

@wagenet
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@wildchild, should be fixed now, you'll have to re-download.

@ghedamat
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great!

@aew
Copy link

@aew aew commented on 55b4207 Feb 15, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!

@intuitivepixel
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

¡AWESOME!

@mcansky
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🍻 🍷 !

@mehulkar
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome.

Please sign in to comment.