Skip to content

Commit c91e8d0

Browse files
committed
v0.22.0
1 parent f8b143c commit c91e8d0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Note: `nvm` does not support Windows (see [#284](https://github.com/creationix/n
1212

1313
To install you could use the [install script][2] using cURL:
1414

15-
curl https://raw.githubusercontent.com/creationix/nvm/v0.21.0/install.sh | bash
15+
curl https://raw.githubusercontent.com/creationix/nvm/v0.22.0/install.sh | bash
1616

1717
or Wget:
1818

19-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.21.0/install.sh | bash
19+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.22.0/install.sh | bash
2020

2121
<sub>The script clones the nvm repository to `~/.nvm` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc` or `~/.profile`).</sub>
2222

@@ -191,7 +191,7 @@ After the v0.8.6 release of node, nvm tries to install from binary packages. But
191191
nvm install -s 0.8.6
192192

193193
[1]: https://github.com/creationix/nvm.git
194-
[2]: https://github.com/creationix/nvm/blob/v0.21.0/install.sh
194+
[2]: https://github.com/creationix/nvm/blob/v0.22.0/install.sh
195195
[3]: https://travis-ci.org/creationix/nvm
196196
[Urchin]: https://github.com/scraperwiki/urchin
197197

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ nvm_source() {
2727
return 0
2828
fi
2929
if [ "_$NVM_METHOD" = "_script" ]; then
30-
NVM_SOURCE="https://raw.githubusercontent.com/creationix/nvm/v0.21.0/nvm.sh"
30+
NVM_SOURCE="https://raw.githubusercontent.com/creationix/nvm/v0.22.0/nvm.sh"
3131
elif [ "_$NVM_METHOD" = "_script-nvm-exec" ]; then
32-
NVM_SOURCE="https://raw.githubusercontent.com/creationix/nvm/v0.21.0/nvm-exec"
32+
NVM_SOURCE="https://raw.githubusercontent.com/creationix/nvm/v0.22.0/nvm-exec"
3333
elif [ "_$NVM_METHOD" = "_git" ] || [ -z "$NVM_METHOD" ]; then
3434
NVM_SOURCE="https://github.com/creationix/nvm.git"
3535
else
@@ -69,7 +69,7 @@ install_nvm_from_git() {
6969
mkdir -p "$NVM_DIR"
7070
git clone "$(nvm_source "git")" "$NVM_DIR"
7171
fi
72-
cd "$NVM_DIR" && git checkout --quiet v0.21.0 && git branch --quiet -D master >/dev/null 2>&1
72+
cd "$NVM_DIR" && git checkout --quiet v0.22.0 && git branch --quiet -D master >/dev/null 2>&1
7373
return
7474
}
7575

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ nvm() {
10991099
nvm_version $2
11001100
;;
11011101
"--version" )
1102-
echo "0.21.0"
1102+
echo "0.22.0"
11031103
;;
11041104
"unload" )
11051105
unset -f nvm nvm_print_versions nvm_checksum nvm_ls_remote nvm_ls nvm_remote_version nvm_version nvm_rc_version nvm_version_greater nvm_version_greater_than_or_equal_to nvm_supports_source_options > /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.21.0",
3+
"version": "0.22.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)