Skip to content

Commit

Permalink
v0.3.7
Browse files Browse the repository at this point in the history
  * [doc] Clarified that even during local execution after having manually downloaded `n-install` helper scripts are downloaded from this repo.
  • Loading branch information
mklement0 committed Oct 26, 2017
1 parent 46c8998 commit 287b914
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Versioning complies with [semantic versioning (semver)](http://semver.org/).

<!-- NOTE: An entry template for a new version is automatically added each time `make version` is called. Fill in changes afterwards. -->

* **[v0.3.7](https://github.com/mklement0/n-install/compare/v0.3.6...v0.3.7)** (2017-10-25):
* [doc] Clarified that even during local execution after having manually downloaded `n-install` helper scripts are downloaded from this repo.

* **[v0.3.6](https://github.com/mklement0/n-install/compare/v0.3.5...v0.3.6)** (2017-09-03):
* [enhancement] Installation and updating of `n` now guards against unexpected core.autocrlf settings.
* [enhancement] Status and error messages improved to consistently mention version spec. 'lts'
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ To bypass that:
* Invoke `n-install` as detailed below.
* Open a new terminal tab/window or reload your shell initialization file before using `n` and any installed Node.js versions - see GitHub instructions above.
**Note**: Even when executing `n-install` locally, downloading from this repository
occurs; specifically, helper scripts `n-update` and `n-uninstall` are downloaded - see below.
## Installation options
<!-- DO NOT EDIT THE FENCED CODE BLOCK and RETAIN THIS COMMENT: The fenced code block below is updated by `make update-readme/release` with CLI usage information. -->
Expand Down Expand Up @@ -300,6 +303,9 @@ Versioning complies with [semantic versioning (semver)](http://semver.org/).
<!-- NOTE: An entry template for a new version is automatically added each time `make version` is called. Fill in changes afterwards. -->
* **[v0.3.7](https://github.com/mklement0/n-install/compare/v0.3.6...v0.3.7)** (2017-10-25):
* [doc] Clarified that even during local execution after having manually downloaded `n-install` helper scripts are downloaded from this repo.
* **[v0.3.6](https://github.com/mklement0/n-install/compare/v0.3.5...v0.3.6)** (2017-09-03):
* [enhancement] Installation and updating of `n` now guards against unexpected core.autocrlf settings.
* [enhancement] Status and error messages improved to consistently mention version spec. 'lts'
Expand Down
2 changes: 1 addition & 1 deletion bin/n-install
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ unset CDPATH # to prevent unpredictable `cd` behavior
[[ -t 1 ]] || kNO_COLOR=1 # turn off colored output if stdout is not connected to a terminal

# Output version number and exit, if requested. Note that the `ver='...'` statement is automatically updated by `make version VER=<newVer>` - DO keep the 'v' prefix in the variable _definition_.
[[ $1 == '--version' ]] && { ver='v0.3.6'; echo "$kTHIS_NAME ${ver#v}"$'\nFor license information and more, visit https://git.io/n-install-repo'; exit 0; }
[[ $1 == '--version' ]] && { ver='v0.3.7'; echo "$kTHIS_NAME ${ver#v}"$'\nFor license information and more, visit https://git.io/n-install-repo'; exit 0; }

# !! AS OF n 1.3.0, n ITSELF ONLY WORKS WITH curl, NOT ALSO WITH wget.
# !! Once n also supports wget, mention wget as an alternative in the help text.
Expand Down
2 changes: 1 addition & 1 deletion bin/n-uninstall
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ unset CDPATH # to prevent unpredictable `cd` behavior
[[ -t 1 ]] || kNO_COLOR=1 # turn off colored output if stdout is not connected to a terminal

# Output version number and exit, if requested. Note that the `ver='...'` statement is automatically updated by `make version VER=<newVer>` - DO keep the 'v' prefix in the variable _definition_.
[ "$1" = '--version' ] && { ver='v0.3.6'; echo "$kTHIS_NAME ${ver#v}"$'\nFor license information and more, visit https://git.io/n-install-repo'; exit 0; }
[ "$1" = '--version' ] && { ver='v0.3.7'; echo "$kTHIS_NAME ${ver#v}"$'\nFor license information and more, visit https://git.io/n-install-repo'; exit 0; }

# Command-line help.
if [ "$1" = '--help' ] || [ "$1" = '-h' ]; then
Expand Down
2 changes: 1 addition & 1 deletion bin/n-update
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ unset CDPATH # to prevent unpredictable `cd` behavior
[[ -t 1 ]] || kNO_COLOR=1 # turn off colored output if stdout is not connected to a terminal

# Output version number and exit, if requested. Note that the `ver='...'` statement is automatically updated by `make version VER=<newVer>` - DO keep the 'v' prefix in the variable _definition_.
[ "$1" = '--version' ] && { ver='v0.3.6'; echo "$kTHIS_NAME ${ver#v}"$'\nFor license information and more, visit https://git.io/n-install-repo'; exit 0; }
[ "$1" = '--version' ] && { ver='v0.3.7'; echo "$kTHIS_NAME ${ver#v}"$'\nFor license information and more, visit https://git.io/n-install-repo'; exit 0; }

# Command-line help.
if [ "$1" = '--help' ] || [ "$1" = '-h' ]; then
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "n-install",
"description": "installs n, the Node.js version manager, without needing to install Node.js first",
"private": true,
"version": "0.3.6",
"version": "0.3.7",
"os": [
"darwin",
"linux"
Expand Down

0 comments on commit 287b914

Please sign in to comment.