Skip to content

Commit 177a967

Browse files
committed
v0.33.10
1 parent db98f8c commit 177a967

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.9-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.10-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 -->
@@ -43,13 +43,13 @@
4343
To install or update nvm, you can use the [install script][2] using cURL:
4444

4545
```sh
46-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.9/install.sh | bash
46+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.10/install.sh | bash
4747
```
4848

4949
or Wget:
5050

5151
```sh
52-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.9/install.sh | bash
52+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.10/install.sh | bash
5353
```
5454

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

132132
1. clone this repo in the root of your user profile
133133
- `cd ~/` from anywhere then `git clone https://github.com/creationix/nvm.git .nvm`
134-
2. `cd ~/.nvm` and check out the latest version with `git checkout v0.33.9`
134+
2. `cd ~/.nvm` and check out the latest version with `git checkout v0.33.10`
135135
3. activate nvm by sourcing it from your shell: `. nvm.sh`
136136

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

498498
```sh
499499
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
500-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.9/install.sh | bash
500+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.10/install.sh | bash
501501
```
502502

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

582582
[1]: https://github.com/creationix/nvm.git
583-
[2]: https://github.com/creationix/nvm/blob/v0.33.9/install.sh
583+
[2]: https://github.com/creationix/nvm/blob/v0.33.10/install.sh
584584
[3]: https://travis-ci.org/creationix/nvm
585-
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.9
585+
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.10
586586
[Urchin]: https://github.com/scraperwiki/urchin
587587
[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.9"
14+
echo "v0.33.10"
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
@@ -3435,7 +3435,7 @@ nvm() {
34353435
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
34363436
;;
34373437
"--version" )
3438-
nvm_echo '0.33.9'
3438+
nvm_echo '0.33.10'
34393439
;;
34403440
"unload" )
34413441
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.9",
3+
"version": "0.33.10",
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)