Skip to content

Commit b546436

Browse files
committed
v0.33.6
1 parent 016bc13 commit b546436

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 7 additions & 7 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.33.5-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.6-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.5/install.sh | bash
44+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
4545
```
4646

4747
or Wget:
4848

4949
```sh
50-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
50+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/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-
2. `cd ~/.nvm` and check out the latest version with `git checkout v0.33.5`
130+
2. `cd ~/.nvm` and check out the latest version with `git checkout v0.33.6`
131131
3. activate nvm by sourcing it from your shell: `. nvm.sh`
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 grep util-linux binutils findutils
490-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash
490+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/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.5/install.sh
557+
[2]: https://github.com/creationix/nvm/blob/v0.33.6/install.sh
558558
[3]: https://travis-ci.org/creationix/nvm
559-
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.5
559+
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.6
560560
[Urchin]: https://github.com/scraperwiki/urchin
561561
[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.33.5"
14+
echo "v0.33.6"
1515
}
1616

1717
nvm_profile_is_bash_or_zsh() {

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3387,7 +3387,7 @@ nvm() {
33873387
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
33883388
;;
33893389
"--version" )
3390-
nvm_echo '0.33.5'
3390+
nvm_echo '0.33.6'
33913391
;;
33923392
"unload" )
33933393
nvm deactivate >/dev/null 2>&1

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