Skip to content

Commit

Permalink
Version bump - 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed Jan 23, 2012
1 parent c13dc08 commit b0e21b5
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 19 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
*Ember 0.9.4 (January 23, 2012)*

* Add Ember.Select control
* Added Ember.Handlebars action helper to easily add event handling to DOM elements without requiring a new view
* jQuery 1.7 compatibility
* Added a runtime build target for usage with Node.js
* Instantiate a ViewState's view if it's not already an instance
* In addition to having a rootElement, state managers can now have a rootView property. If this is set, view states will append their view as a child view of that view.
* Views now register themselves with a controller if the viewController property is set
* Other miscellaneous improvements to States
* Allows setting a custom initial substate on states
* ContainerView now sets the parentView property of views that are added to its childViews array.
* Removed ember-handlebars-format, ember-datetime
* Array's [] property no longer notifies of changes. Use @each instead.
* Deprecated getPath/setPath global support
* Ember.Application's default rootElement has changed from document to document.body
* Events are no longer passed to views that are not in the DOM
* Miscellaneous improvements to Ember.Button
* Add return value to Ember.TargetActionSupport.triggerAction()
* Added Ember.Handlebars.precompile for template precompilation
* Fix security exceptions in older versions of Firefox
* Introduce Ember.onerror for improved error handling
* Make {{this}} work with numbers within an #each helper
* Textfield and textarea now bubble events by default
* Fixed issue where Handlebars helpers without arguments were interpreted as bindings
* Add callbacks for isVisible changes to Ember.View
* Fix unbound helper when used with {{this}}
* Add underscore and camelize to string prototype extensions.
* View tagName is now settable from Handlebars <script> template via data-tag-name
* Miscellaneous performance improvements
* Lots of minor bug fixes
* Inline documentation improvements

*Ember 0.9.3 (December 19, 2011)*

* Make sure willInsertElement actually gets called on all child views. Element is still not guaranteed to work.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.3
0.9.4
2 changes: 1 addition & 1 deletion ember.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ember",
"bpm": "1.0.0",
"dependencies": {
"ember": "0.9.3"
"ember": "0.9.4"
},
"dependencies:development": {
"spade-qunit": "~> 1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-handlebars/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "0.9.3",
"version": "0.9.4",
"dependencies": {
"spade": "~> 1.0.0",
"handlebars": "~> 1.0.0.beta.3",
"ember-views": "0.9.3",
"ember-views": "0.9.4",
"metamorph": "~> 1.0.0"
},

Expand Down
6 changes: 3 additions & 3 deletions packages/ember-metal/lib/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if ('undefined' === typeof Ember) {
/**
@namespace
@name Ember
@version 0.9.3
@version 0.9.4
All Ember methods and functions are defined inside of this namespace.
You generally should not add new properties to this namespace as it may be
Expand Down Expand Up @@ -41,10 +41,10 @@ if ('undefined' !== typeof window) {
/**
@static
@type String
@default '0.9.3'
@default '0.9.4'
@constant
*/
Ember.VERSION = '0.9.3';
Ember.VERSION = '0.9.4';

/**
@static
Expand Down
2 changes: 1 addition & 1 deletion packages/ember-metal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"summary": "JavaScript on Steroids",
"homepage": "http://github.com/emberjs/ember.js",
"author": "Charles Jolley",
"version": "0.9.3",
"version": "0.9.4",

"dependencies": {
"spade": "~> 1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-runtime/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

"homepage": "http://emberjs.com",
"author": "Charles Jolley",
"version": "0.9.3",
"version": "0.9.4",

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

"dependencies": {
"spade": "~> 1.0",
"ember-metal": "0.9.3"
"ember-metal": "0.9.4"
},

"dependencies:development": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-states/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "The Ember state management system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "0.9.3",
"version": "0.9.4",

"directories": {
"lib": "lib"
Expand All @@ -13,7 +13,7 @@
"dependencies": {
"spade": "~> 1.0",
"jquery": "~> 1.7",
"ember-views": "0.9.3"
"ember-views": "0.9.4"
},

"dependencies:development": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-views/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "The Ember view system",
"homepage": "http://emberjs.com",
"author": "Yehuda Katz",
"version": "0.9.3",
"version": "0.9.4",

"directories": {
"lib": "lib"
Expand All @@ -13,7 +13,7 @@
"dependencies": {
"spade": "~> 1.0",
"jquery": "~> 1.7",
"ember-runtime": "0.9.3"
"ember-runtime": "0.9.4"
},

"dependencies:development": {
Expand Down
10 changes: 5 additions & 5 deletions packages/ember/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"summary": "Ember - JavaScript Application Framework",
"homepage": "http://github.com/emberjs/ember.js",
"author": "Charles Jolley",
"version": "0.9.3",
"version": "0.9.4",

"dependencies": {
"spade": "~> 1.0.0",
"ember-runtime": "0.9.3",
"ember-views": "0.9.3",
"ember-states": "0.9.3",
"ember-handlebars": "0.9.3"
"ember-runtime": "0.9.4",
"ember-views": "0.9.4",
"ember-states": "0.9.4",
"ember-handlebars": "0.9.4"
},

"directories": {
Expand Down

0 comments on commit b0e21b5

Please sign in to comment.