0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 11:37:26 +01:00

Release 0.2.0

This commit is contained in:
Tj Holowaychuk 2011-01-20 19:37:38 -08:00
parent 4ddb8b0a7d
commit 489458d29a
3 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,13 @@
0.2.0 / 2011-01-20
==================
* Added; display config options when using `n`.
For example if you install via `n 0.3.5 --debug`,
then `n` will display `0.3.5 --debug`.
* Changed; `n <version>` ignores non-n installations
0.1.2 / 2011-01-20
==================

2
bin/n
View File

@ -2,7 +2,7 @@
# Library version
VERSION="0.1.2"
VERSION="0.2.0"
PREFIX=${PREFIX-/usr/local}
N_PREFIX=${N_PREFIX-/usr/local}
VERSIONS_DIR=$N_PREFIX/n/versions

View File

@ -1,6 +1,6 @@
{ "name": "n"
, "description": "node version manager"
, "version": "0.1.2"
, "version": "0.2.0"
, "author": "TJ Holowaychuk <tj@vision-media.ca>"
, "keywords": ["node", "binary", "version", "env"]
, "bin": { "n": "./bin/n" }