marktag 2.1.4
marktag: ^2.1.4 copied to clipboard
Flutter SDK for Marktag
Marktag #
Flutter SDK for Marktag
Installation 💻 #
Install via flutter pub add:
dart pub add marktag
The visit the Marktag Docs to see how to integrate it in your project:
Marktag Docs #
Publishing a new version 🚀 #
-
Bump the
versioninpubspec.yamland add a matching entry toCHANGELOG.md. -
Validate the package (no changes are published):
flutter pub publish --dry-run -
Commit the version bump so you publish from a clean git state:
git add pubspec.yaml CHANGELOG.md && git commit -m "chore: release <version>" -
Publish to pub.dev:
flutter pub publish -
Tag the release and push:
git tag v<version> git push && git push --tags