Skip to content

Commit 1eaf6b5

Browse files
committed
v0.23.2
1 parent 24c60e4 commit 1eaf6b5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Note: `nvm` does not support Windows (see [#284](https://github.com/creationix/n
1212

1313
To install you could use the [install script][2] using cURL:
1414

15-
curl https://raw.githubusercontent.com/creationix/nvm/v0.23.1/install.sh | bash
15+
curl https://raw.githubusercontent.com/creationix/nvm/v0.23.2/install.sh | bash
1616

1717
or Wget:
1818

19-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.23.1/install.sh | bash
19+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.23.2/install.sh | bash
2020

2121
<sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc` or `~/.profile`).</sub>
2222

@@ -202,7 +202,7 @@ After the v0.8.6 release of node, nvm tries to install from binary packages. But
202202
nvm install -s 0.8.6
203203

204204
[1]: https://github.com/creationix/nvm.git
205-
[2]: https://github.com/creationix/nvm/blob/v0.23.1/install.sh
205+
[2]: https://github.com/creationix/nvm/blob/v0.23.2/install.sh
206206
[3]: https://travis-ci.org/creationix/nvm
207207
[Urchin]: https://github.com/scraperwiki/urchin
208208

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ -z "$NVM_DIR" ]; then
1111
fi
1212

1313
nvm_latest_version() {
14-
echo "v0.23.1"
14+
echo "v0.23.2"
1515
}
1616

1717
#

nvm.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ $NVM_LS_REMOTE_IOJS_OUTPUT" | command grep -v "N/A" | sed '/^$/d')"
15021502
nvm_version $2
15031503
;;
15041504
"--version" )
1505-
echo "0.23.1"
1505+
echo "0.23.2"
15061506
;;
15071507
"unload" )
15081508
unset -f nvm nvm_print_versions nvm_checksum \

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nvm",
3-
"version": "0.23.1",
3+
"version": "0.23.2",
44
"description": "Node Version Manager - Simple bash script to manage multiple active node.js versions",
55
"directories": {
66
"test": "test"

0 commit comments

Comments
 (0)