bumper 0.1.4
bumper: ^0.1.4 copied to clipboard
CLI tool to bump your project versions. Use it with arguments or standalone (it will be interactive mode with arrow-type mode selection).
import 'dart:io';
void main() {
stdout.writeln('This is an example of how to use the `bumper` tool:');
stdout.writeln('To bump a version part, run the following command:');
stdout.writeln('dart run bumper major');
stdout.writeln('Or simply run `dart run bumper` to choose interactively.');
}