Skip to content

Commit 40e4097

Browse files
committed
v0.33.0
1 parent ae8eb80 commit 40e4097

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.markdown

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Node Version Manager [![Build Status](https://travis-ci.org/creationix/nvm.svg?branch=master)][3] [![nvm version](https://img.shields.io/badge/version-v0.32.1-yellow.svg)][4]
1+
# Node Version Manager [![Build Status](https://travis-ci.org/creationix/nvm.svg?branch=master)][3] [![nvm version](https://img.shields.io/badge/version-v0.33.0-yellow.svg)][4]
22

33
## Table of Contents
44

@@ -61,13 +61,13 @@ Homebrew installation is not supported. If you have issues with homebrew-install
6161
To install or update nvm, you can use the [install script][2] using cURL:
6262

6363
```sh
64-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
64+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
6565
```
6666

6767
or Wget:
6868

6969
```sh
70-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
70+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
7171
```
7272

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

436436
```sh
437437
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers
438-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
438+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
439439
```
440440

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

468468
[1]: https://github.com/creationix/nvm.git
469-
[2]: https://github.com/creationix/nvm/blob/v0.32.1/install.sh
469+
[2]: https://github.com/creationix/nvm/blob/v0.33.0/install.sh
470470
[3]: https://travis-ci.org/creationix/nvm
471-
[4]: https://github.com/creationix/nvm/releases/tag/v0.32.1
471+
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.0
472472
[Urchin]: https://github.com/scraperwiki/urchin
473473
[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.32.1"
14+
echo "v0.33.0"
1515
}
1616

1717
#

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3150,7 +3150,7 @@ nvm() {
31503150
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
31513151
;;
31523152
"--version" )
3153-
nvm_echo '0.32.1'
3153+
nvm_echo '0.33.0'
31543154
;;
31553155
"unload" )
31563156
unset -f nvm \

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.32.1",
3+
"version": "0.33.0",
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)