Skip to content

Commit

Permalink
bump version to 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbutler committed Oct 9, 2015
1 parent 1caff7d commit 15a3375
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
.build*
smart.lock
versions.json
.versions
4 changes: 4 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.0.11 / 2015-10-09
==================
* Fix Iron-Layout for Meteor 1.2

1.0.10 / 2015-10-6
==================
* compatibility fix for Meteor 1.2
Expand Down
18 changes: 9 additions & 9 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package.describe({
name: 'iron:router',
summary: 'Routing specifically designed for Meteor',
version: "1.0.10",
git: "https://github.com/eventedmind/iron-router"
version: '1.0.11',
git: 'https://github.com/iron-meteor/iron-router'
});

Npm.depends({
Expand All @@ -22,26 +22,26 @@ Package.on_use(function (api) {
api.use('ejson');

// for dynamic scoping with environment variables
api.use('meteor')
api.use('meteor');

// main namespace and utils
api.use('iron:[email protected].8');
api.use('iron:[email protected].11');
api.imply('iron:core');

// ui layout
api.use('iron:[email protected].8');
api.use('iron:[email protected].11');

// connect like middleware stack for client/server
api.use('iron:[email protected].10');
api.use('iron:[email protected].11');

// client and server side url utilities and compiling
api.use('iron:[email protected].9');
api.use('iron:[email protected].11');

// for reactive urls and pushState in the browser
api.use('iron:[email protected].9');
api.use('iron:[email protected].11');

// for RouteController which inherits from this
api.use('iron:[email protected].8');
api.use('iron:[email protected].11');

api.add_files('lib/current_options.js');
api.add_files('lib/http_methods.js');
Expand Down

0 comments on commit 15a3375

Please sign in to comment.