Skip to content

Commit 8143e2c

Browse files
committed
Release v0.2.0
1 parent 0b4e635 commit 8143e2c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Flutter Version Manager [![fvm version](https://img.shields.io/badge/version-v0.1.0-40d0fd.svg)][2]
1+
# Flutter Version Manager [![fvm version](https://img.shields.io/badge/version-v0.2.0-40d0fd.svg)][2]
22

33
Inspired by [nvm](https://github.com/nvm-sh/nvm)
44

@@ -67,10 +67,10 @@ Simple as that!
6767

6868
To **install** or **update** fvm, you should run the [install script][1]. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
6969
```sh
70-
curl -o- https://raw.githubusercontent.com/fvm-sh/fvm/v0.1.0/install.sh | bash
70+
curl -o- https://raw.githubusercontent.com/fvm-sh/fvm/v0.2.0/install.sh | bash
7171
```
7272
```sh
73-
wget -qO- https://raw.githubusercontent.com/fvm-sh/fvm/v0.1.0/install.sh | bash
73+
wget -qO- https://raw.githubusercontent.com/fvm-sh/fvm/v0.2.0/install.sh | bash
7474
```
7575

7676
Running either of the above commands downloads a script and runs it. The script clones the fvm repository to `~/.fvm`, and attempts to add the source lines from the snippet below to the correct profile file (`~/.bash_profile`, `~/.zshrc`, `~/.profile`, or `~/.bashrc`).
@@ -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/fvm-sh/fvm.git .fvm`
161-
1. `cd ~/.fvm` and check out the latest version with `git checkout v0.1.0`
161+
1. `cd ~/.fvm` and check out the latest version with `git checkout v0.2.0`
162162
1. activate `fvm` by sourcing it from your shell: `. ./fvm.sh`
163163

164164
Now add these lines to your `~/.bashrc`, `~/.profile`, or `~/.zshrc` file to have it automatically sourced upon login:
@@ -368,8 +368,8 @@ You have to make sure that the user directory name in `$HOME` and the user direc
368368

369369
To change the user directory and/or account name follow the instructions [here](https://support.apple.com/en-us/HT201548)
370370

371-
[1]: https://github.com/fvm-sh/fvm/blob/v0.1.0/install.sh
372-
[2]: https://github.com/fvm-sh/fvm/releases/tag/v0.1.0
371+
[1]: https://github.com/fvm-sh/fvm/blob/v0.2.0/install.sh
372+
[2]: https://github.com/fvm-sh/fvm/releases/tag/v0.2.0
373373

374374
**Homebrew makes zsh directories unsecure**
375375

fvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ fvm() {
676676
command ln -s "${FVM_VERSION_DIR}" ".flutter" >/dev/null 2>&1
677677
;;
678678
"--version" | "-v")
679-
fvm_echo 'v0.1.0'
679+
fvm_echo 'v0.2.0'
680680
;;
681681
"deactivate")
682682
local FVM_GLOBAL

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fvm_install_dir() {
3333
}
3434

3535
fvm_latest_version() {
36-
fvm_echo "v0.1.0"
36+
fvm_echo "v0.2.0"
3737
}
3838

3939
fvm_profile_is_bash_or_zsh() {

0 commit comments

Comments
 (0)