Skip to content

Commit 56417f8

Browse files
committed
v0.31.3
1 parent dbb65d9 commit 56417f8

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
@@ -37,13 +37,13 @@ Note: If you're using `zsh` you can easily install `nvm` as a zsh plugin. Instal
3737
To install or update nvm, you can use the [install script][2] using cURL:
3838

3939
```sh
40-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | bash
40+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | bash
4141
```
4242

4343
or Wget:
4444

4545
```sh
46-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | bash
46+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | bash
4747
```
4848

4949
<sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).</sub>
@@ -394,7 +394,7 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
394394

395395
```sh
396396
apk add bash
397-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.2/install.sh | /bin/bash
397+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.3/install.sh | /bin/bash
398398
```
399399

400400
The Node project has some desire but no concrete plans (due to the overheads of building, testing and support) to offer Alpine-compatible binaries.
@@ -425,7 +425,7 @@ After the v0.8.6 release of node, nvm tries to install from binary packages. But
425425
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))
426426

427427
[1]: https://github.com/creationix/nvm.git
428-
[2]: https://github.com/creationix/nvm/blob/v0.31.2/install.sh
428+
[2]: https://github.com/creationix/nvm/blob/v0.31.3/install.sh
429429
[3]: https://travis-ci.org/creationix/nvm
430430
[Urchin]: https://github.com/scraperwiki/urchin
431431
[Fish]: http://fishshell.com

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ nvm_install_dir() {
1111
}
1212

1313
nvm_latest_version() {
14-
echo "v0.31.2"
14+
echo "v0.31.3"
1515
}
1616

1717
#

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2764,7 +2764,7 @@ $NVM_LS_REMOTE_POST_MERGED_OUTPUT" | nvm_grep -v "N/A" | command sed '/^$/d')"
27642764
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
27652765
;;
27662766
"--version" )
2767-
nvm_echo '0.31.2'
2767+
nvm_echo '0.31.3'
27682768
;;
27692769
"unload" )
27702770
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.2",
3+
"version": "0.31.3",
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)