From ca89ab6eb1120d618748c6fd7fcfd4c5fd2d6207 Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Fri, 29 Jul 2022 15:50:16 -0700 Subject: [PATCH] Release 0.1.0 --- CHANGELOG.md | 7 +++++++ RELEASING.md | 13 +++++++++++++ kmp4free/gradle.properties | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md create mode 100644 RELEASING.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6d350c6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# Change Log + +## Version 0.1.0 + +_2022-07-29_ + +* Initial Release diff --git a/RELEASING.md b/RELEASING.md new file mode 100644 index 0000000..0855e03 --- /dev/null +++ b/RELEASING.md @@ -0,0 +1,13 @@ +Releasing +========= + +1. Change the version in `kmp4free/gradle.properties` to a non-SNAPSHOT version. +2. Update the `README.md` to reflect the new version number. +3. Update the `CHANGELOG.md` for the impending release. +4. `git commit -am "Release X.Y.Z."` (where X.Y.Z is the new version) +5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version) +6. `git push && git push --tags` to trigger CI to deploy the release. +7. Update the `gradle.properties` to the next SNAPSHOT version. +8. `git commit -am "Prepare next development version."` +9. `git push` +10. \ No newline at end of file diff --git a/kmp4free/gradle.properties b/kmp4free/gradle.properties index 68fb0a8..19d2e91 100644 --- a/kmp4free/gradle.properties +++ b/kmp4free/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.handstandsam.kmp4free -VERSION_NAME=0.1.0-SNAPSHOT +VERSION_NAME=0.1.0 POM_ARTIFACT_ID=kmp4free POM_NAME=kmp4free