diff --git a/.gitignore b/.gitignore index 0f1edf5..e9cd9c9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ +.DS_Store +.npm .build* +smart.lock versions.json +.versions diff --git a/History.md b/History.md index e69de29..9b60cf9 100644 --- a/History.md +++ b/History.md @@ -0,0 +1,3 @@ +v1.0.11 / 2015-10-09 +================== + * Support Meteor 1.2 diff --git a/README.md b/README.md index e69de29..b33bec9 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +Iron Url +================== +Url utilities and support for compiling a url into a regular expression. diff --git a/package.js b/package.js index b0ecfdf..617f69b 100644 --- a/package.js +++ b/package.js @@ -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');