Skip to content

Commit 6f19bab

Browse files
committed
v0.33.3
1 parent b3e25b1 commit 6f19bab

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

+7-7
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.33.2-yellow.svg)][4] [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/684/badge)](https://bestpractices.coreinfrastructure.org/projects/684)
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.3-yellow.svg)][4] [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/684/badge)](https://bestpractices.coreinfrastructure.org/projects/684)
22

33
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
44
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
@@ -41,13 +41,13 @@
4141
To install or update nvm, you can use the [install script][2] using cURL:
4242

4343
```sh
44-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
44+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.3/install.sh | bash
4545
```
4646

4747
or Wget:
4848

4949
```sh
50-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
50+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.3/install.sh | bash
5151
```
5252

5353
<sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).</sub>
@@ -127,7 +127,7 @@ If you have `git` installed (requires git v1.7+):
127127

128128
1. clone this repo in the root of your user profile
129129
- `cd ~/` from anywhere then `git clone https://github.com/creationix/nvm.git .nvm`
130-
1. check out the latest version with `git checkout v0.33.2`
130+
1. check out the latest version with `git checkout v0.33.3`
131131
1. activate nvm by sourcing it from your shell
132132

133133
Now add these lines to your `~/.bashrc`, `~/.profile`, or `~/.zshrc` file to have it automatically sourced upon login:
@@ -487,7 +487,7 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
487487

488488
```sh
489489
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers
490-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
490+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.3/install.sh | bash
491491
```
492492

493493
The Node project has some desire but no concrete plans (due to the overheads of building, testing and support) to offer Alpine-compatible binaries.
@@ -554,8 +554,8 @@ sudo chmod ugo-x /usr/libexec/path_helper
554554
More on this issue in [dotphiles/dotzsh](https://github.com/dotphiles/dotzsh#mac-os-x).
555555

556556
[1]: https://github.com/creationix/nvm.git
557-
[2]: https://github.com/creationix/nvm/blob/v0.33.2/install.sh
557+
[2]: https://github.com/creationix/nvm/blob/v0.33.3/install.sh
558558
[3]: https://travis-ci.org/creationix/nvm
559-
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.2
559+
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.3
560560
[Urchin]: https://github.com/scraperwiki/urchin
561561
[Fish]: http://fishshell.com

install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ nvm_install_dir() {
1111
}
1212

1313
nvm_latest_version() {
14-
echo "v0.33.2"
14+
echo "v0.33.3"
1515
}
1616

1717
nvm_profile_is_bash_or_zsh() {

nvm.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3368,7 +3368,7 @@ nvm() {
33683368
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
33693369
;;
33703370
"--version" )
3371-
nvm_echo '0.33.2'
3371+
nvm_echo '0.33.3'
33723372
;;
33733373
"unload" )
33743374
nvm deactivate >/dev/null 2>&1

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nvm",
3-
"version": "0.33.2",
3+
"version": "0.33.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)