change 0.0.10 copy "change: ^0.0.10" to clipboard
change: ^0.0.10 copied to clipboard

outdated

A Changelog manipulation library. Read/modify/write your CHANGELOG.md. Inspired by keepachangelog.com.

example/main.dart

import 'dart:io';

import 'package:change/model.dart';

/// This example shows how to parse a changelog.
/// Run it from the project root folder: `dart example/main.dart`
void main() async {
  final file = File('CHANGELOG.md');
  final changelog = Changelog.fromLines(await file.readAsLines());
  final releases = changelog.releases;
  final latest = releases.last;
  print('Changelog contains ${releases.length} releases');
  print('The latest is ${latest.version} released on ${latest.date}');
}
8
likes
0
pub points
74%
popularity

Publisher

verified publisherkarapetov.com

A Changelog manipulation library. Read/modify/write your CHANGELOG.md. Inspired by keepachangelog.com.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

args, intl, markdown, marker, maybe_just_nothing, pub_semver

More

Packages that depend on change