From 3b3a8659ea09cb29fbdc9b389dcf19c4e77a5edd Mon Sep 17 00:00:00 2001 From: Jim Eckerlein Date: Tue, 17 Aug 2021 14:41:15 +0200 Subject: [PATCH] outline process of publishing a new version --- PUBLISHING.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 PUBLISHING.md diff --git a/PUBLISHING.md b/PUBLISHING.md new file mode 100644 index 0000000..b5b2536 --- /dev/null +++ b/PUBLISHING.md @@ -0,0 +1,8 @@ +# Publishing new Versions + +1. Merge everything back into `master`, delete development branches +2. Ensure correct functionality by running all unit tests: `dart test` +3. Add an entry to the [changelog](CHANGELOG.md) +4. Bump the version specified in the [Pub manifest](pubspec.yaml) +5. Create a GitHub release with the version number as the title, implies creating a Git tag +6. Publish package to Pub: `pub publish`