Skip to content

Commit 683424c

Browse files
authored
bump patch for latest java common (#202)
* bump patch for latest java common * fix version
1 parent ae00688 commit 683424c

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ feature flagging and experimentation for Eppo customers. An API key is required
1212

1313
```groovy
1414
dependencies {
15-
implementation 'cloud.eppo:android-sdk:4.10.0'
15+
implementation 'cloud.eppo:android-sdk:4.10.1'
1616
}
1717
1818
dependencyResolutionManagement {
@@ -24,7 +24,7 @@ dependencyResolutionManagement {
2424
}
2525
}
2626
```
27-
Snapshots of the development version are available in [Maven Central's snapshotsrepository](https://central.sonatype.com/repository/maven-snapshot).
27+
Snapshots of the development version are available in [Maven Central's snapshots repository](https://central.sonatype.com/repository/maven-snapshots).
2828

2929
## Releasing a new version
3030

@@ -34,20 +34,20 @@ For publishing a release locally, instead, follow the steps below.
3434

3535
### Prerequisites
3636

37-
1. [Generate a user token](https://central.sonatype.org/publish/generate-token/) on `s01.oss.sonatype.org`;
37+
1. [Generate a user token](https://central.sonatype.org/publish/generate-token/) on `central.sonatype.com`;
3838
2. [Configure a GPG key](https://central.sonatype.org/publish/requirements/gpg/) for signing the artifact. Don't forget to upload it to the key server;
3939
3. Make sure you have the following vars in your `~/.gradle/gradle.properties` file:
40-
1. `ossrhUsername` - User token username for Sonatype generated in step 1
41-
2. `ossrhPassword` - User token password for Sonatype generated in step 1
40+
1. `mavenCentralUsername` - User token username for Central Portal generated in step 1
41+
2. `mavenCentralPassword` - User token password for Central Portal generated in step 1
4242
3. `signing.keyId` - GPG key ID generated in step 2
4343
4. `signing.password` - GPG key password generated in step 2
4444
5. `signing.secretKeyRingFile` - Path to GPG key file generated in step 2
4545

4646
Once you have the prerequisites, follow the steps below to release a new version:
4747

4848
1. Bump the project version in `build.gradle`
49-
2. Run `./gradlew publish -Prelease` or `./gradlew publish -Psnapshot`
50-
3. Follow the steps in [this page](https://central.sonatype.org/publish/release/#credentials) to promote your release
49+
2. Run `./gradlew eppo:publish -Prelease` or `./gradlew eppo:publish -Psnapshot`
50+
3. For releases, run `./gradlew eppo:publishAndReleaseToMavenCentral -Prelease` to automatically release to Maven Central
5151

5252
## Getting Started
5353
For information on usage, refer to our [SDK Documentation](https://docs.geteppo.com/sdks/client-sdks/android/).

eppo/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ plugins {
77
}
88

99
group = "cloud.eppo"
10-
version = "4.10.1-SNAPSHOT"
11-
10+
version = "4.10.1"
1211

1312
android {
1413
buildFeatures.buildConfig true
@@ -69,7 +68,7 @@ ext.versions = [
6968
]
7069

7170
dependencies {
72-
api 'cloud.eppo:sdk-common-jvm:3.12.0'
71+
api 'cloud.eppo:sdk-common-jvm:3.12.1'
7372

7473
implementation 'org.slf4j:slf4j-api:2.0.17'
7574

0 commit comments

Comments
 (0)