Skip to content

Commit a8023fe

Browse files
committed
5.0.1 release
1 parent 747dcc7 commit a8023fe

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
Nothing right now.
88

9+
## [5.0.1] - 2024-11-07
10+
### Changed
11+
- Dependency upgrades, incl. Scala 2.13.15 and 2.12.20
12+
913
## [5.0.0] - 2024-08-28
1014
### Changed
1115
- Switced over to Pekko instead of Akka

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ These are the components we provide:
1010
<dependency>
1111
<groupId>com.sumologic.shellbase</groupId>
1212
<artifactId>shellbase-core_2.13</artifactId>
13-
<version>4.0.0</version>
13+
<version>5.0.1</version>
1414
</dependency>
1515
1616
<dependency>
1717
<groupId>com.sumologic.shellbase</groupId>
1818
<artifactId>shellbase-slack_2.13</artifactId>
19-
<version>4.0.0</version>
19+
<version>5.0.1</version>
2020
</dependency>
2121
```
2222

@@ -77,9 +77,9 @@ outside this list)
7777
signing.gnupg.passphrase=${password_for_imported_sumoapi_key}
7878
```
7979
2. Remove `-SNAPSHOT` suffix from `version` in `build.gradle`
80-
3. Make a release branch with Scala version and project version, ex. `shellbase-5.0.1`:
80+
3. Make a release branch with Scala version and project version, ex. `shellbase-5.0.2`:
8181
```
82-
export RELEASE_VERSION=shellbase-5.0.1
82+
export RELEASE_VERSION=shellbase-5.0.2
8383
git checkout -b ${RELEASE_VERSION}
8484
git add build.gradle
8585
git commit -m "[release] ${RELEASE_VERSION}"
@@ -97,7 +97,7 @@ outside this list)
9797
5. Go to https://oss.sonatype.org/index.html#stagingRepositories, search for com.sumologic, close and release your repo.
9898
NOTE: If you had to login, reload the URL. It doesn't take you to the right page post-login
9999
6. Update the `README.md` and `CHANGELOG.md` with the new version and set upcoming snapshot `version`
100-
in `build.gradle`, ex. `5.0.2-SNAPSHOT`
100+
in `build.gradle`, ex. `5.0.3-SNAPSHOT`
101101
7. Commit the change and push as a PR:
102102
```
103103
git add build.gradle README.md CHANGELOG.md

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ allprojects {
3636
group = "com.sumologic.shellbase"
3737
description = "Sumo Logic's Scala-based interactive shell framework"
3838

39-
version = '5.0.1'
39+
version = '5.0.2-SNAPSHOT'
4040

4141
sourceCompatibility = javaSourceVersion
4242
targetCompatibility = javaTargetVersion

0 commit comments

Comments
 (0)