This project is a fastlane plugin. To get started with fastlane-plugin-flutter_bump_version
, add it to your project by running:
fastlane add_plugin flutter_bump_version
Manages Flutter project version
Check out the example 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 (,)
As Example :
old version : 1.0.0
[bundle exec] fastlane bump_version bump:major,minor,minor,patch
new version : 2.2.1
build (version code) auto-increase based on current version code & you can disable it by pass false
with bump_build parameter
if you not pass any option or wrong option with command will bump build as default
And the push
if true
plugin will bump version & create tag from it then push to git remote if false
not do anything
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.