From c49a3f4169971d4f55d3a120f73fa543e232b317 Mon Sep 17 00:00:00 2001 From: Isao Yagi Date: Mon, 10 Sep 2012 16:56:12 -0700 Subject: [PATCH] update version to 1.0.2 also rm upper limit on deps & make const VERSION match --- index.js | 2 +- package.json | 8 ++++---- tests/unit.js | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.js b/index.js index 3c77995..0702b52 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,7 @@ /*jslint anon:true, sloppy:true, node:true, nomen:true*/ -var VERSION = '2.0.0', +var VERSION = '1.0.2', DEFAULT = '*', SEPARATOR = '/', SUBMATCH = /\$\$[a-zA-Z0-9.-_]*\$\$/, diff --git a/package.json b/package.json index b048023..d219303 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ycb", - "version": "1.0.1", + "version": "1.0.2", "description": "YCB is a multi-dimensional configuration library that builds bundles from resource files describing a variety of values.", "author": "Ric Allinson ", "contributors": [ @@ -8,15 +8,15 @@ "Michael Ridgway " ], "dependencies": { - "yui": "~3.5.1" + "yui": ">3.5" }, "main": "index", "scripts": { "test": "node tests/unit" }, "engines": { - "node": ">= 0.4.0 < 0.7.0", - "npm": ">= 1.0.0" + "node": ">0.4", + "npm": ">1.0" }, "devDependencies": {}, "repository": { diff --git a/tests/unit.js b/tests/unit.js index 2bed2c9..07f4636 100644 --- a/tests/unit.js +++ b/tests/unit.js @@ -59,7 +59,7 @@ suite.add(new Y.Test.Case({ 'test if we can use the module': function() { - A.isTrue(libycb.version === '2.0.0'); + A.isTrue(libycb.version === '1.0.2'); },