Skip to content

Commit

Permalink
Release 0.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgrove committed Mar 11, 2011
1 parent 3c77581 commit 1b0212e
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 25 deletions.
4 changes: 3 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
Selleck History
===============

0.1.1 (git)
0.1.1 (2011-03-11)
------------------

* Use Express 2.0.0.
* Merge override metadata into global metadata output.
* Throw errors in server mode for easier debugging. [Dav Glass]


0.1.0 (2011-03-08)
Expand Down
2 changes: 1 addition & 1 deletion bin/selleck
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ var fs = require('fs'),
].join('\n'),

version = [
"Selleck 0.1.1dev",
"Selleck 0.1.1",
"Copyright (c) 2011 Yahoo! Inc. All rights reserved.",
"https://github.com/rgrove/selleck/",
""
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
{
"name" : "selleck",
"description": "Generator for YUI's mustache-based user documentation.",
"version" : "0.1.1dev",
"keywords" : ["yui", "mustache", "docs", "documentation"],
"homepage" : "https://github.com/rgrove/selleck/",
"author" : "Ryan Grove <ryan@wonko.com> (http://wonko.com/)",
"name" : "selleck",
"description": "Generator for YUI's mustache-based user documentation.",
"version" : "0.1.1",
"keywords" : ["yui", "mustache", "docs", "documentation"],
"homepage" : "https://github.com/rgrove/selleck/",
"author" : "Ryan Grove <ryan@wonko.com> (http://wonko.com/)",

"licenses": [
{"type": "BSD", "url": "http://developer.yahoo.com/yui/license.html"}
],
"licenses": [
{"type": "BSD", "url": "http://developer.yahoo.com/yui/license.html"}
],

"repository": [
{"type": "git", "url": "git://github.com/rgrove/selleck.git"}
],
"repository": [
{"type": "git", "url": "git://github.com/rgrove/selleck.git"}
],

"engines": [
"node >=0.4.0 <0.5.0",
"npm >=0.3.1"
],
"engines": [
"node >=0.4.0 <0.5.0",
"npm >=0.3.1"
],

"dependencies": {
"express" : ">=2.0.0beta2 <=2.1.0",
"mustache": "0.3.x"
},
"dependencies": {
"express" : ">=2.0.0beta2 <=2.1.0",
"mustache": "0.3.x"
},

"main": "index",
"bin" : {"selleck": "./bin/selleck"},
"main": "index",
"bin" : {"selleck": "./bin/selleck"},

"directories": {"lib": "./lib"}
"directories": {"lib": "./lib"}
}

0 comments on commit 1b0212e

Please sign in to comment.