Skip to content

Commit 56cf782

Browse files
authored
Merge pull request #157 from SumoLogic/sumo-java-client-2.12
Release of 2.12
2 parents f50d3cf + 0febe23 commit 56cf782

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* 2024-10-17: Version 2.12 released to Maven Central.
12
* 2023-10-10: Version 2.11 released to Maven Central.
23
* 2022-04-29: Version 2.10 released to Maven Central.
34
* 2022-01-17: Version 2.9 released to Maven Central.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Java client library is available on Maven central (http://search.maven.org/)
1212
<dependency>
1313
<groupId>com.sumologic.api.client</groupId>
1414
<artifactId>sumo-java-client</artifactId>
15-
<version>2.11</version>
15+
<version>2.12</version>
1616
</dependency>
1717
```
1818

RELEASING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
signing.gnupg.passphrase=${password_for_imported_sumoapi_key}
1818
```
1919
2. Remove `-SNAPSHOT` suffix from `version` in `build.gradle`
20-
3. Make a release branch with Scala version and project version, ex. `sumo-java-client-2.12`:
20+
3. Make a release branch with Scala version and project version, ex. `sumo-java-client-2.13`:
2121
```
22-
export RELEASE_VERSION=sumo-java-client-2.12
22+
export RELEASE_VERSION=sumo-java-client-2.13
2323
git checkout -b ${RELEASE_VERSION}
2424
git add build.gradle
2525
git commit -m "[release] ${RELEASE_VERSION}"
@@ -31,7 +31,7 @@
3131
5. Go to https://oss.sonatype.org/index.html#stagingRepositories, search for com.sumologic, close and release your repo.
3232
NOTE: If you had to login, reload the URL. It doesn't take you to the right page post-login
3333
6. Update the `README.md` and `CHANGELOG.md` with the new version and set upcoming snapshot `version`
34-
in `build.gradle`, ex. `2.13-SNAPSHOT`
34+
in `build.gradle`, ex. `2.14-SNAPSHOT`
3535
7. Commit the change and push as a PR:
3636
```
3737
git add build.gradle README.md CHANGELOG.md

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
}
3434

3535
group = 'com.sumologic.api.client'
36-
version = '2.12-SNAPSHOT'
36+
version = '2.13-SNAPSHOT'
3737
description = 'Sumo Logic Java Client Library'
3838
java.sourceCompatibility = JavaVersion.VERSION_1_8
3939

0 commit comments

Comments
 (0)