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 a4a782a commit e238adf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
.DS_Store
.npm
.build*
smart.lock
versions.json
.versions
4 changes: 3 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
## vNEXT
v1.0.11 / 2015-10-09
==================
* Support Meteor 1.2
21 changes: 8 additions & 13 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,23 @@
Package.describe({
name: 'iron:controller',
summary: 'Controller class for dynamic layouts.',
version: '1.0.8',
git: 'https://github.com/eventedmind/iron-controller.git',
name: 'iron:controller'
version: '1.0.11',
git: 'https://github.com/iron-meteor/iron-controller'
});

Package.on_use(function (api) {
api.versionsFrom('[email protected]');

api.use('underscore');

// reactivity
api.use('tracker');

// reactive state variables
api.use('reactive-dict');

api.use('tracker'); // reactivity
api.use('reactive-dict'); // reactive state variables
api.use('templating');

api.use('iron:[email protected].8');
api.use('iron:[email protected].11');
api.imply('iron:core');

api.use('iron:[email protected].10');
api.use('iron:[email protected].8');
api.use('iron:[email protected].11');
api.use('iron:[email protected].11');

api.add_files('lib/wait_list.js', 'client');
api.add_files('lib/controller.js');
Expand Down

0 comments on commit e238adf

Please sign in to comment.