From a8023fe0f723b3f922b9504db5f9ee5943b98985 Mon Sep 17 00:00:00 2001 From: Greg Oledzki Date: Thu, 7 Nov 2024 13:04:08 +0100 Subject: [PATCH] 5.0.1 release --- CHANGELOG.md | 4 ++++ README.md | 10 +++++----- build.gradle | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e24b33..acd8ab2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). Nothing right now. +## [5.0.1] - 2024-11-07 +### Changed +- Dependency upgrades, incl. Scala 2.13.15 and 2.12.20 + ## [5.0.0] - 2024-08-28 ### Changed - Switced over to Pekko instead of Akka diff --git a/README.md b/README.md index d6a116f..5579b9e 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ These are the components we provide: com.sumologic.shellbase shellbase-core_2.13 - 4.0.0 + 5.0.1 com.sumologic.shellbase shellbase-slack_2.13 - 4.0.0 + 5.0.1 ``` @@ -77,9 +77,9 @@ outside this list) signing.gnupg.passphrase=${password_for_imported_sumoapi_key} ``` 2. Remove `-SNAPSHOT` suffix from `version` in `build.gradle` -3. Make a release branch with Scala version and project version, ex. `shellbase-5.0.1`: +3. Make a release branch with Scala version and project version, ex. `shellbase-5.0.2`: ``` - export RELEASE_VERSION=shellbase-5.0.1 + export RELEASE_VERSION=shellbase-5.0.2 git checkout -b ${RELEASE_VERSION} git add build.gradle git commit -m "[release] ${RELEASE_VERSION}" @@ -97,7 +97,7 @@ outside this list) 5. Go to https://oss.sonatype.org/index.html#stagingRepositories, search for com.sumologic, close and release your repo. NOTE: If you had to login, reload the URL. It doesn't take you to the right page post-login 6. Update the `README.md` and `CHANGELOG.md` with the new version and set upcoming snapshot `version` -in `build.gradle`, ex. `5.0.2-SNAPSHOT` +in `build.gradle`, ex. `5.0.3-SNAPSHOT` 7. Commit the change and push as a PR: ``` git add build.gradle README.md CHANGELOG.md diff --git a/build.gradle b/build.gradle index 4d21b23..88ab9d1 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ allprojects { group = "com.sumologic.shellbase" description = "Sumo Logic's Scala-based interactive shell framework" - version = '5.0.1' + version = '5.0.2-SNAPSHOT' sourceCompatibility = javaSourceVersion targetCompatibility = javaTargetVersion