https://github.com/bixat/fastlane-plugin-flutter_bump_version
Manages Flutter project version
https://github.com/bixat/fastlane-plugin-flutter_bump_version
fastlane-plugin flutter version-manager
Last synced: about 2 months ago
JSON representation
Manages Flutter project version
- Host: GitHub
- URL: https://github.com/bixat/fastlane-plugin-flutter_bump_version
- Owner: bixat
- License: mit
- Created: 2022-09-22T18:32:54.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-06-26T17:25:15.000Z (4 months ago)
- Last Synced: 2025-08-19T13:07:11.907Z (2 months ago)
- Topics: fastlane-plugin, flutter, version-manager
- Language: Ruby
- Homepage: https://rubygems.org/gems/fastlane-plugin-flutter_bump_version
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_bump_version plugin
[](https://rubygems.org/gems/fastlane-plugin-flutter_bump_version)
[](https://badge.fury.io/rb/fastlane-plugin-flutter_bump_version)
[](https://github.com/M97Chahboun/fastlane-plugin-flutter_bump_version/actions/workflows/test.yml)

## Getting Started
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-flutter_bump_version`, add it to your project by running:
```bash
fastlane add_plugin flutter_bump_version
```
## About flutter_bump_version
Manages Flutter project version
## Example
Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane bump_version bump:patch push:false`.
You can `bump` multi parts of version you want by use instead of `patch` (`major`,`minor` or `patch`) split it by (,)
Example :
old version : `1.0.0`
```sh
[bundle exec] fastlane bump_version bump:major,minor,minor,patch
```
new version : `2.2.1`
## Available options
- `bump_build`: build (version code) auto-increases based on current version code. You can disable it by passing `false` to this parameter. If you don't pass any options, the command will bump the `build` by default.
- `push`: You can automatically create a tag and push it to git remote if you pass the `push: true` parameter.
- `version`: provide a version using the SemVer format (`x.x.x`) to be applied to the `pubspec.yaml` file. The build part is managed by the `bump_build` parameter.
See [available options](./lib/fastlane/plugin/flutter_bump_version/actions/flutter_bump_version_action.rb#L159) in the source file for more on available options.
## Issues and Feedback
For any other issues and feedback about this plugin, please submit it to this repository.
## Troubleshooting
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
## Using _fastlane_ Plugins
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
## About _fastlane_
_fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).