pub_release
  • README
  • Creating a release
  • Multi-package Releases
    • Setup
    • Commands
    • Circular dependencies
    • Mono Repo
    • Version No.s
  • Hooks
  • Dependency overrides
  • Automatic github releases
  • Attach an asset to a github release
  • Automating releases using Git work flows
  • Version File
  • CHANGELOG
  • example
Powered by GitBook
On this page

Was this helpful?

Version File

When creating a release, pub_release will create or update a dart file containing the package version no.

The version file is called:

lib/src/version/version.g.dart

The contents of the version file will be:

/// GENERATED BY pub_release do not modify.
/// pub_release version
String packageVersion = '3.0.0';

Where the packageVersion is set to the value in your pubspec.yaml.

The packageVersion variable provides a convenient method if you need to display the version no. of your package.

PreviousAutomating releases using Git work flowsNextCHANGELOG

Last updated 4 years ago

Was this helpful?