Skip to content

Commit 5f5eb47

Browse files
committed
v0.18.0
1 parent d09b84d commit 5f5eb47

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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.17.3/install.sh | bash
15+
curl https://raw.githubusercontent.com/creationix/nvm/v0.18.0/install.sh | bash
1616

1717
or Wget:
1818

19-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.17.3/install.sh | bash
19+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.18.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

@@ -186,7 +186,7 @@ After the v0.8.6 release of node, nvm tries to install from binary packages. But
186186
nvm install -s 0.8.6
187187

188188
[1]: https://github.com/creationix/nvm.git
189-
[2]: https://github.com/creationix/nvm/blob/v0.17.3/install.sh
189+
[2]: https://github.com/creationix/nvm/blob/v0.18.0/install.sh
190190
[3]: https://travis-ci.org/creationix/nvm
191191
[Urchin]: https://github.com/scraperwiki/urchin
192192

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ install_nvm_from_git() {
4444
mkdir -p "$NVM_DIR"
4545
git clone "$NVM_SOURCE" "$NVM_DIR"
4646
fi
47-
cd "$NVM_DIR" && git checkout v0.17.3 && git branch -D master >/dev/null 2>&1
47+
cd "$NVM_DIR" && git checkout v0.18.0 && git branch -D master >/dev/null 2>&1
4848
return
4949
}
5050

5151
install_nvm_as_script() {
5252
if [ -z "$NVM_SOURCE" ]; then
53-
NVM_SOURCE="https://raw.githubusercontent.com/creationix/nvm/v0.17.3/nvm.sh"
53+
NVM_SOURCE="https://raw.githubusercontent.com/creationix/nvm/v0.18.0/nvm.sh"
5454
fi
5555

5656
# Downloading to $NVM_DIR

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ nvm() {
10401040
nvm_version $2
10411041
;;
10421042
"--version" )
1043-
echo "0.17.3"
1043+
echo "0.18.0"
10441044
;;
10451045
"unload" )
10461046
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 > /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.17.3",
3+
"version": "0.18.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)