Skip to content

Commit

Permalink
5.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mccartney committed Nov 7, 2024
1 parent 747dcc7 commit a8023fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ These are the components we provide:
<dependency>
<groupId>com.sumologic.shellbase</groupId>
<artifactId>shellbase-core_2.13</artifactId>
<version>4.0.0</version>
<version>5.0.1</version>
</dependency>
<dependency>
<groupId>com.sumologic.shellbase</groupId>
<artifactId>shellbase-slack_2.13</artifactId>
<version>4.0.0</version>
<version>5.0.1</version>
</dependency>
```

Expand Down Expand Up @@ -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}"
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a8023fe

Please sign in to comment.