Skip to content

Commit

Permalink
bump version to 1.0.11
Browse files Browse the repository at this point in the history
chrisbutler committed Oct 9, 2015
1 parent 84bbd7c commit b781759
Showing 4 changed files with 18 additions and 7 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
3 changes: 3 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
v1.0.11 / 2015-10-09
==================
* Support Meteor 1.2
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Iron Url
==================
Url utilities and support for compiling a url into a regular expression.
15 changes: 8 additions & 7 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
Package.describe({
name: "iron:url",
summary: "Url utilities and support for compiling a url into a regular expression.",
version: "1.0.9",
git: "https://github.com/eventedmind/iron-url",
documentation: null
name: 'iron:url',
summary: 'Url utilities and support for compiling a url into a regular expression.',
version: '1.0.11',
git: 'https://github.com/iron-meteor/iron-url'
});

Package.on_use(function (api) {
api.use('underscore@1.0.0');
api.versionsFrom('METEOR@0.9.2');

api.use('underscore');

api.use('iron:core@1.0.8');
api.use('iron:core@1.0.11');
api.imply('iron:core');

api.add_files('lib/compiler.js');

0 comments on commit b781759

Please sign in to comment.