Skip to content

Commit 0aa3118

Browse files
committed
v0.30.1
1 parent 2541baa commit 0aa3118

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ Homebrew installation is not supported.
2525

2626
To install or update nvm, you can use the [install script][2] using cURL:
2727

28-
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.30.0/install.sh | bash
28+
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.30.1/install.sh | bash
2929

3030
or Wget:
3131

32-
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.30.0/install.sh | bash
32+
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.30.1/install.sh | bash
3333

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

@@ -254,7 +254,7 @@ After the v0.8.6 release of node, nvm tries to install from binary packages. But
254254
If setting the `default` alias does not establish the node version in new shells (i.e. `nvm current` yields `system`), ensure that the system's node PATH is set before the `nvm.sh` source line in your shell profile (see [#658](https://github.com/creationix/nvm/issues/658))
255255

256256
[1]: https://github.com/creationix/nvm.git
257-
[2]: https://github.com/creationix/nvm/blob/v0.30.0/install.sh
257+
[2]: https://github.com/creationix/nvm/blob/v0.30.1/install.sh
258258
[3]: https://travis-ci.org/creationix/nvm
259259
[Urchin]: https://github.com/scraperwiki/urchin
260260
[Fish]: http://fishshell.com

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ -z "$NVM_DIR" ]; then
1111
fi
1212

1313
nvm_latest_version() {
14-
echo "v0.30.0"
14+
echo "v0.30.1"
1515
}
1616

1717
#

nvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2288,7 +2288,7 @@ $NVM_LS_REMOTE_POST_MERGED_OUTPUT" | command grep -v "N/A" | command sed '/^$/d'
22882288
nvm_remote_version "$2"
22892289
;;
22902290
"--version" )
2291-
echo "0.30.0"
2291+
echo "0.30.1"
22922292
;;
22932293
"unload" )
22942294
unset -f nvm nvm_print_versions nvm_checksum \

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.30.0",
3+
"version": "0.30.1",
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)