Skip to content

Commit d28704f

Browse files
authored
Release 1.3.0 (#24)
* use sonatype staging api * release 1.3.0 * fix github release issue
1 parent aaac1de commit d28704f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
tags:
66
- '*.*.*'
7-
-
87
permissions: write-all
98

109
jobs:

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ android.nonTransitiveRClass=true
2424

2525
GROUP=com.segment.analytics.kotlin
2626

27-
VERSION_CODE=120
28-
VERSION_NAME=1.2.0
27+
VERSION_CODE=130
28+
VERSION_NAME=1.3.0
2929

3030
POM_NAME=Analytics-Kotlin-Live
3131
POM_DESCRIPTION=Enrich and modify events via OTA updates

gradle/promote.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ nexusPublishing {
2929
in system environments
3030
be sure to set the variable names exactly as above.
3131
*/
32-
sonatype()
32+
sonatype {
33+
// New Portal OSSRH Staging API endpoints
34+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
35+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
36+
}
3337
}
3438
}

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ pluginManagement {
88
dependencyResolutionManagement {
99
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
1010
repositories {
11-
mavenLocal()
1211
google()
1312
mavenCentral()
1413
}

0 commit comments

Comments
 (0)