Skip to content

Commit 011810e

Browse files
committed
v0.35.0
1 parent d48abff commit 011810e

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/nvm-sh/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)
1+
# Node Version Manager [![Build Status](https://travis-ci.org/nvm-sh/nvm.svg?branch=master)][3] [![nvm version](https://img.shields.io/badge/version-v0.35.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 -->
@@ -47,13 +47,13 @@
4747
To **install** or **update** nvm, you can use the [install script][2] using cURL:
4848

4949
```sh
50-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
50+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
5151
```
5252

5353
or Wget:
5454

5555
```sh
56-
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
56+
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
5757
```
5858

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

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

164164
Now add these lines to your `~/.bashrc`, `~/.profile`, or `~/.zshrc` file to have it automatically sourced upon login:
@@ -645,7 +645,7 @@ If installing nvm on Alpine Linux *is* still what you want or need to do, you sh
645645
646646
```sh
647647
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
648-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
648+
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash
649649
```
650650
651651
The Node project has some desire but no concrete plans (due to the overheads of building, testing and support) to offer Alpine-compatible binaries.
@@ -731,8 +731,8 @@ sudo chmod ugo-x /usr/libexec/path_helper
731731
More on this issue in [dotphiles/dotzsh](https://github.com/dotphiles/dotzsh#mac-os-x).
732732
733733
[1]: https://github.com/nvm-sh/nvm.git
734-
[2]: https://github.com/nvm-sh/nvm/blob/v0.34.0/install.sh
734+
[2]: https://github.com/nvm-sh/nvm/blob/v0.35.0/install.sh
735735
[3]: https://travis-ci.org/nvm-sh/nvm
736-
[4]: https://github.com/nvm-sh/nvm/releases/tag/v0.34.0
736+
[4]: https://github.com/nvm-sh/nvm/releases/tag/v0.35.0
737737
[Urchin]: https://github.com/scraperwiki/urchin
738738
[Fish]: http://fishshell.com

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ nvm_install_dir() {
1919
}
2020

2121
nvm_latest_version() {
22-
echo "v0.34.0"
22+
echo "v0.35.0"
2323
}
2424

2525
nvm_profile_is_bash_or_zsh() {

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3464,7 +3464,7 @@ nvm() {
34643464
NVM_VERSION_ONLY=true NVM_LTS="${NVM_LTS-}" nvm_remote_version "${PATTERN:-node}"
34653465
;;
34663466
"--version")
3467-
nvm_echo '0.34.0'
3467+
nvm_echo '0.35.0'
34683468
;;
34693469
"unload")
34703470
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.34.0",
3+
"version": "0.35.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)