The project is in a healthy, maintained state
Manages Flutter project version
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

flutter_bump_version plugin

fastlane Plugin Badge Plugin Version Test

Getting Started

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

About flutter_bump_version

Manages Flutter project version

Example

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 (,)

Example :

old version : 1.0.0

[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 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 guide.

Using fastlane Plugins

For more information about how the fastlane plugin system works, check out the Plugins documentation.

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.