Skip to content
This repository was archived by the owner on Jun 26, 2022. It is now read-only.

Commit

Permalink
Release 0.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Dec 9, 2013
1 parent 0cdd27d commit ff7c60d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Exoskeleton 0.6.1 (9 December 2013)
* Fixed handling of missing common.js jQuery dependency.

# Exoskeleton 0.6.0 (28 November 2013)
* **Breaking:** removed `View#delegate` and `View#undelegate`.
These methods now reside in `utils` and can be excluded
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "exoskeleton",
"main": "exoskeleton.js",
"version": "0.6.0",
"version": "0.6.1",
"homepage": "https://github.com/paulmillr/exoskeleton",
"author": "Paul Miller (http://paulmillr.com)",
"description": "Faster and leaner Backbone for your HTML5 apps.",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "exoskeleton",
"repo": "paulmillr/exoskeleton",
"description": "Faster and leaner Backbone for your HTML5 apps.",
"version": "0.6.0",
"version": "0.6.1",
"keywords": [
"Backbone",
"Exoskeleton",
Expand Down
6 changes: 3 additions & 3 deletions exoskeleton.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Exoskeleton.js 0.6.0
* Exoskeleton.js 0.6.1
* (c) 2013 Paul Miller <http://paulmillr.com>
* Based on Backbone.js
* (c) 2010-2013 Jeremy Ashkenas, DocumentCloud
Expand All @@ -14,9 +14,9 @@
root.Backbone = root.Exoskeleton = factory(root, exports, _, $);
});
} else if (typeof exports !== 'undefined') {
var _, jquery;
var _, $;
try { _ = require('underscore'); } catch(e) { }
try { jquery = require('jquery'); } catch(e) { }
try { $ = require('jquery'); } catch(e) { }
factory(root, exports, _, $);
} else {
root.Backbone = root.Exoskeleton = factory(root, {}, root._, (root.jQuery || root.Zepto || root.ender || root.$));
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "exoskeleton",
"version": "0.6.0",
"version": "0.6.1",
"description": "Faster and leaner Backbone for your HTML5 apps.",
"main": "exoskeleton.js",
"directories": {
Expand Down

0 comments on commit ff7c60d

Please sign in to comment.