Skip to content

Commit b239287

Browse files
committed
Prepare for v0.1.0 release
1 parent 7c9276e commit b239287

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
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.0.1-40d0fd.svg)][2]
1+
# Flutter Version Manager [![fvm version](https://img.shields.io/badge/version-v0.1.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.0.1/install.sh | bash
70+
curl -o- https://raw.githubusercontent.com/fvm-sh/fvm/v0.1.0/install.sh | bash
7171
```
7272
```sh
73-
wget -qO- https://raw.githubusercontent.com/fvm-sh/fvm/v0.0.1/install.sh | bash
73+
wget -qO- https://raw.githubusercontent.com/fvm-sh/fvm/v0.1.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.0.1`
161+
1. `cd ~/.fvm` and check out the latest version with `git checkout v0.1.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.0.1/install.sh
372-
[2]: https://github.com/fvm-sh/fvm/releases/tag/v0.0.1
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
373373

374374
**Homebrew makes zsh directories unsecure**
375375

debug.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ fvm_debug() {
3030
fvm_err "\$SHLVL: ${SHLVL-}"
3131
fvm_err "whoami: '$(whoami)'"
3232
fvm_err "\${HOME}: ${HOME}"
33-
fvm_err "\${FVM_DIR}: '$(fvm_sanitize_path "${FVM_DIR}")'"
34-
fvm_err "\${PATH}: $(fvm_sanitize_path "${PATH}")"
35-
fvm_err "\$PREFIX: '$(fvm_sanitize_path "${PREFIX}")'"
33+
fvm_err "\${FVM_DIR}: '${FVM_DIR}'"
34+
fvm_err "\${PATH}: ${PATH}"
3635
fvm_err "shell version: '$(${SHELL} --version | command head -n 1)'"
3736
fvm_err "uname -a: '$(command uname -a | command awk '{$2=""; print}' | command xargs)'"
3837
if [ "$(fvm_get_os)" = "macos" ] && fvm_has sw_vers; then
@@ -97,7 +96,7 @@ fvm_debug() {
9796
local FVM_DEBUG_OUTPUT
9897
for FVM_DEBUG_COMMAND in 'fvm current' 'which flutter' 'which dart'; do
9998
FVM_DEBUG_OUTPUT="$(${FVM_DEBUG_COMMAND} 2>&1)"
100-
fvm_err "${FVM_DEBUG_COMMAND}: $(fvm_sanitize_path "${FVM_DEBUG_OUTPUT}")"
99+
fvm_err "${FVM_DEBUG_COMMAND}: ${FVM_DEBUG_OUTPUT}"
101100
done
102101
return 42
103102
}

fvm.sh

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

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.0.1"
36+
fvm_echo "v0.1.0"
3737
}
3838

3939
fvm_profile_is_bash_or_zsh() {

0 commit comments

Comments
 (0)