From 0e2d750a3d790a458857f2a1c0bbc05feb739bbc Mon Sep 17 00:00:00 2001 From: Osip Fatkullin Date: Wed, 31 Jul 2024 16:18:03 +0200 Subject: [PATCH] docs(releasing): Fix tag format --- RELEASING.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index ee25c0e..9a48f9b 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -22,8 +22,8 @@ 6. Create a release tag on the `main` branch: ```bash # Push the release tag - git tag [version] - git push origin [version] + git tag v[version] + git push origin v[version] ``` Release tag push triggers a release workflow on the CI which uploads release artifacts to Maven Central and creates a GitHub release. @@ -40,5 +40,6 @@ ## Version Update -1. Update a version in `gradle.properties` and `README.md` +1. Update a version in `gradle.properties` 2. Update a version used in samples in `build.gradle.kts` +3. It the version is not a snapshot, update the version in `README.md`