rubiconba/fastlane-plugin-flutter-version-manager

how to bump code version

Closed this issue · 1 comments

I would like to bump code version.
Example from 1.0.0+1 to 1.0.0+2

How can I do that?

Bumping code version happens automatically behind the scenes when you use apply argument. Version is picked up from the timestamp of head commit and reduced by a hardcoded value

lane :apply_new_version do
  flutter_version_manager(
    arguments: "-apply",
    yml: "./version.yml",
    pubspec: "./example_pubspec.yaml")
end