marktag 2.1.4 copy "marktag: ^2.1.4" to clipboard
marktag: ^2.1.4 copied to clipboard

Flutter SDK for Marktag

Marktag #

Coverage

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 🚀 #

  1. Bump the version in pubspec.yaml and add a matching entry to CHANGELOG.md.

  2. Validate the package (no changes are published):

    flutter pub publish --dry-run
    
  3. Commit the version bump so you publish from a clean git state:

    git add pubspec.yaml CHANGELOG.md && git commit -m "chore: release <version>"
    
  4. Publish to pub.dev:

    flutter pub publish
    
  5. Tag the release and push:

    git tag v<version>
    git push && git push --tags