Skip to content

Commit

Permalink
Version bump and readme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
leoafarias committed Jun 23, 2020
1 parent 77d2782 commit d2baaf5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.2

- Indicates channels on `fvm releases` command.

## 1.0.1

- Suppress verbose message for install progress.
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `fvm`
# fvm

![Pub Version](https://img.shields.io/pub/v/fvm?label=version&style=flat-square)
[![Maintenance](https://img.shields.io/badge/dynamic/json?color=blue&label=maintenance&query=maintenance&url=http://www.pubscore.gq/all?package=fvm&style=flat-square)](https://pub.dev/help#maintenance)
Expand All @@ -11,8 +11,8 @@ Flutter Version Management: A simple cli to manage Flutter SDK versions.
- Configure and use Flutter SDK version per project
- Ability to install and cache multiple Flutter SDK Versions
- Fast switch between Flutter channels & versions
- Dynamic sdk paths for IDE debugging support.
- Version FVM config with project for consistency across teams and CI environments.
- Dynamic SDK paths for IDE debugging support.
- Version FVM config with a project for consistency across teams and CI environments.
- Set global Flutter version across projects

## Version Management
Expand Down Expand Up @@ -50,7 +50,7 @@ FVM gives you the ability to install many Flutter **releases** or **channels**.

#### Project Config SDK Version

If your project is already configured to use an specifc version. Run `install` without any arguments will make sure the proper version is installed for the project.
If you configured your project to use a specific version, run `install` without any arguments will install the proper version.

```bash
> fvm install
Expand All @@ -66,11 +66,11 @@ You can use different Flutter SDK versions per project. To do that you have to g
> fvm use <version>
```

If you want to use a specific version by default in your machine, you can specify the flag `--global` to the `use` command. A symbolic link to the Flutter version will be created in the `fvm` home folder, which you could then add to your PATH environment variable as follows: `FVM_HOME/default/bin`. Use `fvm use --help`, thsi will give you the exact path you need to configure.
If you want to use a specific version by default in your machine, you can specify the flag `--global` to the `use` command. A symbolic link to the Flutter version will be created in the `fvm` home folder, which you could then add to your PATH environment variable as follows: `FVM_HOME/default/bin`. Use `fvm use --help`, this will give you the exact path you need to configure.

### Remove a SDK Version

Using the remove command will uninstall the SDK version locally. This will impact any projects that depend on that version of the SDK.
Using the remove command will uninstall the SDK version locally, this will impact any projects that depend on that version of the SDK.

```bash
> fvm remove <version>
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fvm
description: A simple cli to manage Flutter SDK versions per project. Support channels, releases, and local cache for fast switching between versions.
version: 1.0.1
version: 1.0.2
homepage: https://github.com/leoafarias/fvm

environment:
Expand Down

0 comments on commit d2baaf5

Please sign in to comment.