Skip to content

Commit d179810

Browse files
committed
v0.31.5
1 parent 1ac7e23 commit d179810

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.4/install.sh | bash
40+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.5/install.sh | bash
4141
```
4242

4343
or Wget:
4444

4545
```sh
46-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | bash
46+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.5/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>
@@ -404,7 +404,7 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
404404

405405
```sh
406406
apk add bash
407-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.4/install.sh | /bin/bash
407+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.5/install.sh | /bin/bash
408408
```
409409

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

437437
[1]: https://github.com/creationix/nvm.git
438-
[2]: https://github.com/creationix/nvm/blob/v0.31.4/install.sh
438+
[2]: https://github.com/creationix/nvm/blob/v0.31.5/install.sh
439439
[3]: https://travis-ci.org/creationix/nvm
440440
[Urchin]: https://github.com/scraperwiki/urchin
441441
[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.4"
14+
echo "v0.31.5"
1515
}
1616

1717
#

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2919,7 +2919,7 @@ $NVM_LS_REMOTE_POST_MERGED_OUTPUT" | nvm_grep -v "N/A" | command sed '/^$/d')"
29192919
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
29202920
;;
29212921
"--version" )
2922-
nvm_echo '0.31.4'
2922+
nvm_echo '0.31.5'
29232923
;;
29242924
"unload" )
29252925
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.4",
3+
"version": "0.31.5",
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)