Skip to content

Commit

Permalink
update version to 1.0.2
Browse files Browse the repository at this point in the history
also rm upper limit on deps & make const VERSION match
  • Loading branch information
Isao Yagi committed Sep 11, 2012
1 parent 9d23cd3 commit c49a3f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -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.-_]*\$\$/,
Expand Down
8 changes: 4 additions & 4 deletions package.json
@@ -1,22 +1,22 @@
{
"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 <allinson@yahoo-inc.com>",
"contributors": [
"Drew Folta <folta@yahoo-inc.com>",
"Michael Ridgway <mridgway@yahoo-inc.com>"
],
"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": {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit.js
Expand Up @@ -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');
},


Expand Down

0 comments on commit c49a3f4

Please sign in to comment.