isNewVersion property

bool isNewVersion
final

Used to check if the version of the library has changed since the last commit.

Implementation

static final isNewVersion = _git([
      'tag',
      '-l',
      'v${ptConfig.pubSpec.version}',
    ]).trim() !=
    'v${ptConfig.pubSpec.version}';