Skip to content

Commit cf50ff3

Browse files
chore: release 3.24.2
Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
1 parent a57c45d commit cf50ff3

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
publish:
10-
name: Publish to Sonatype
10+
name: Publish to Maven Central
1111
runs-on: macos-14
1212
if: "startsWith(github.event.head_commit.message, 'chore: release')"
1313
steps:
@@ -26,8 +26,8 @@ jobs:
2626
- name: Upload Artifacts
2727
run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
2828
env:
29-
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
30-
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
29+
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
30+
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
3131
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_PRIVATE_KEY }}
3232
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_PRIVATE_KEY_ID }}
3333
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PRIVATE_KEY_PASSWORD }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [3.24.2](https://github.com/algolia/algoliasearch-client-kotlin/compare/3.24.1...3.24.2)
2+
3+
- [7238519bc9](https://github.com/algolia/api-clients-automation/commit/7238519bc9) chore(clients): correctly upgrade to maven central publishing ([#5085](https://github.com/algolia/api-clients-automation/pull/5085)) by [@millotp](https://github.com/millotp/)
4+
15
## [3.24.1](https://github.com/algolia/algoliasearch-client-kotlin/compare/3.24.0...3.24.1)
26

37
- [4c9416a9fe](https://github.com/algolia/api-clients-automation/commit/4c9416a9fe) fix(specs): update sourceRun docs ([#5057](https://github.com/algolia/api-clients-automation/pull/5057)) by [@DevinCodes](https://github.com/DevinCodes/)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.algolia.client
22

33
internal object BuildConfig {
4-
internal const val VERSION: String = "3.24.1"
4+
internal const val VERSION: String = "3.24.2"
55
}

gradle.properties

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@ kotlin.mpp.stability.nowarn=true
44

55
# Lib
66
GROUP=com.algolia
7-
VERSION_NAME=3.24.1
8-
9-
# OSS
10-
SONATYPE_HOST=DEFAULT
11-
RELEASE_SIGNING_ENABLED=true
7+
VERSION_NAME=3.24.2
128

139
# POM
1410
POM_DESCRIPTION="Algolia is a powerful search-as-a-service solution, made easy to use with API clients, UI libraries, \
@@ -26,3 +22,8 @@ POM_DEVELOPER_NAME=The Algolia Team
2622
POM_DEVELOPER_EMAIL=hey@algolia.com
2723
POM_ISSUE_SYSTEM=github
2824
POM_ISSUE_URL=https://github.com/algolia/algoliasearch-client-kotlin/issues
25+
26+
# Publishing
27+
mavenCentralPublishing=true
28+
mavenCentralAutomaticPublishing=true
29+
signAllPublications=true

0 commit comments

Comments
 (0)