Skip to content

Commit 6669e91

Browse files
committed
v0.33.1
1 parent 7c27172 commit 6669e91

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.33.0-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.1-yellow.svg)][4] [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/684/badge)](https://bestpractices.coreinfrastructure.org/projects/684)
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.33.0/install.sh | bash
64+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
6565
```
6666

6767
or Wget:
6868

6969
```sh
70-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
70+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/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>
@@ -437,7 +437,7 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
437437

438438
```sh
439439
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers
440-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
440+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
441441
```
442442

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

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

1717
#

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3165,7 +3165,7 @@ nvm() {
31653165
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
31663166
;;
31673167
"--version" )
3168-
nvm_echo '0.33.0'
3168+
nvm_echo '0.33.1'
31693169
;;
31703170
"unload" )
31713171
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.0",
3+
"version": "0.33.1",
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)