Skip to content

Commit 9f5322e

Browse files
committed
v0.31.2
1 parent b0244a1 commit 9f5322e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ Homebrew installation is not supported.
3434

3535
To install or update nvm, you can use the [install script][2] using cURL:
3636

37-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash
37+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | bash
3838

3939
or Wget:
4040

41-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash
41+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | bash
4242

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

@@ -314,7 +314,7 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
314314

315315
```
316316
apk add bash
317-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | /bin/bash
317+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | /bin/bash
318318
```
319319

320320
The Node project has some desire but no concrete plans (due to the overheads of building, testing and support) to offer Alpine-compatible binaries.
@@ -343,7 +343,7 @@ After the v0.8.6 release of node, nvm tries to install from binary packages. But
343343
If setting the `default` alias does not establish the node version in new shells (i.e. `nvm current` yields `system`), ensure that the system's node PATH is set before the `nvm.sh` source line in your shell profile (see [#658](https://github.com/creationix/nvm/issues/658))
344344

345345
[1]: https://github.com/creationix/nvm.git
346-
[2]: https://github.com/creationix/nvm/blob/v0.31.1/install.sh
346+
[2]: https://github.com/creationix/nvm/blob/v0.31.2/install.sh
347347
[3]: https://travis-ci.org/creationix/nvm
348348
[Urchin]: https://github.com/scraperwiki/urchin
349349
[Fish]: http://fishshell.com

install.sh

Lines changed: 1 addition & 1 deletion
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.31.1"
14+
echo "v0.31.2"
1515
}
1616

1717
#

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2542,7 +2542,7 @@ $NVM_LS_REMOTE_POST_MERGED_OUTPUT" | command grep -v "N/A" | command sed '/^$/d'
25422542
nvm_remote_version "$2"
25432543
;;
25442544
"--version" )
2545-
nvm_echo '0.31.1'
2545+
nvm_echo '0.31.2'
25462546
;;
25472547
"unload" )
25482548
unset -f nvm nvm_print_versions nvm_checksum \

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nvm",
3-
"version": "0.31.1",
3+
"version": "0.31.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)