Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hyiso committed Jun 26, 2023
1 parent 09b3372 commit dc0ca9c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Flutter Version Manager [![fvm version](https://img.shields.io/badge/version-v0.4.1-40d0fd.svg)][2]
# Flutter Version Manager [![fvm version](https://img.shields.io/badge/version-v0.5.0-40d0fd.svg)][2]

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

Expand Down Expand Up @@ -67,10 +67,10 @@ Simple as that!

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:
```sh
curl -o- https://raw.githubusercontent.com/fvm-sh/fvm/v0.4.1/install.sh | bash
curl -o- https://raw.githubusercontent.com/fvm-sh/fvm/v0.5.0/install.sh | bash
```
```sh
wget -qO- https://raw.githubusercontent.com/fvm-sh/fvm/v0.4.1/install.sh | bash
wget -qO- https://raw.githubusercontent.com/fvm-sh/fvm/v0.5.0/install.sh | bash
```

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`).
Expand Down Expand Up @@ -158,7 +158,7 @@ If you have `git` installed (requires git v1.7.10+):

1. clone this repo in the root of your user profile
- `cd ~/` from anywhere then `git clone https://github.com/fvm-sh/fvm.git .fvm`
1. `cd ~/.fvm` and check out the latest version with `git checkout v0.4.1`
1. `cd ~/.fvm` and check out the latest version with `git checkout v0.5.0`
1. activate `fvm` by sourcing it from your shell: `. ./fvm.sh`

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

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

[1]: https://github.com/fvm-sh/fvm/blob/v0.4.1/install.sh
[2]: https://github.com/fvm-sh/fvm/releases/tag/v0.4.1
[1]: https://github.com/fvm-sh/fvm/blob/v0.5.0/install.sh
[2]: https://github.com/fvm-sh/fvm/releases/tag/v0.5.0

**Homebrew makes zsh directories unsecure**

Expand Down
2 changes: 1 addition & 1 deletion fvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ fvm() {
fvm_echo '```' >> ".fvm/README.md"
;;
"--version" | "-v")
fvm_echo 'v0.4.1'
fvm_echo 'v0.5.0'
;;
"deactivate")
local NEWPATH
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fvm_install_dir() {
}

fvm_latest_version() {
fvm_echo "v0.4.1"
fvm_echo "v0.5.0"
}

fvm_profile_is_bash_or_zsh() {
Expand Down

0 comments on commit dc0ca9c

Please sign in to comment.