Skip to content

Commit 3d9c31d

Browse files
committed
v0.34.0
1 parent 0acccb8 commit 3d9c31d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 8 additions & 8 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.11-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.34.0-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 -->
@@ -46,13 +46,13 @@
4646
To install or update nvm, you can use the [install script][2] using cURL:
4747

4848
```sh
49-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
49+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
5050
```
5151

5252
or Wget:
5353

5454
```sh
55-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
55+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
5656
```
5757

5858
<sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).</sub>
@@ -98,7 +98,7 @@ If the above doesn't fix the problem, open your `.bash_profile` and add the foll
9898
```
9999
- name: nvm
100100
shell: >
101-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
101+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
102102
args:
103103
creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh"
104104
```
@@ -157,7 +157,7 @@ If you have `git` installed (requires git v1.7.10+):
157157

158158
1. clone this repo in the root of your user profile
159159
- `cd ~/` from anywhere then `git clone https://github.com/creationix/nvm.git .nvm`
160-
1. `cd ~/.nvm` and check out the latest version with `git checkout v0.33.11`
160+
1. `cd ~/.nvm` and check out the latest version with `git checkout v0.34.0`
161161
1. activate nvm by sourcing it from your shell: `. nvm.sh`
162162

163163
Now add these lines to your `~/.bashrc`, `~/.profile`, or `~/.zshrc` file to have it automatically sourced upon login:
@@ -616,7 +616,7 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
616616
617617
```sh
618618
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
619-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
619+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
620620
```
621621
622622
The Node project has some desire but no concrete plans (due to the overheads of building, testing and support) to offer Alpine-compatible binaries.
@@ -702,8 +702,8 @@ sudo chmod ugo-x /usr/libexec/path_helper
702702
More on this issue in [dotphiles/dotzsh](https://github.com/dotphiles/dotzsh#mac-os-x).
703703
704704
[1]: https://github.com/creationix/nvm.git
705-
[2]: https://github.com/creationix/nvm/blob/v0.33.11/install.sh
705+
[2]: https://github.com/creationix/nvm/blob/v0.34.0/install.sh
706706
[3]: https://travis-ci.org/creationix/nvm
707-
[4]: https://github.com/creationix/nvm/releases/tag/v0.33.11
707+
[4]: https://github.com/creationix/nvm/releases/tag/v0.34.0
708708
[Urchin]: https://github.com/scraperwiki/urchin
709709
[Fish]: http://fishshell.com

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ nvm_install_dir() {
1717
}
1818

1919
nvm_latest_version() {
20-
echo "v0.33.11"
20+
echo "v0.34.0"
2121
}
2222

2323
nvm_profile_is_bash_or_zsh() {

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3434,7 +3434,7 @@ nvm() {
34343434
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
34353435
;;
34363436
"--version" )
3437-
nvm_echo '0.33.11'
3437+
nvm_echo '0.34.0'
34383438
;;
34393439
"unload" )
34403440
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.11",
3+
"version": "0.34.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)