Skip to content

Commit 8a2bf0a

Browse files
committed
0.8.45
1 parent faeb1ab commit 8a2bf0a

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

.github/workflows/staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ jobs:
5353
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
5454
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.PGP_SECRET }}
5555
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.PGP_PASSPHRASE }}
56-
run: ./gradlew publishToSonatype --no-daemon
56+
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository --no-daemon

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.45] - 2025-07-21
9+
10+
### Added
11+
12+
- Mistral client
13+
14+
### Updated
15+
16+
- Google and OpenAI models
17+
818
## [0.8.44] - 2025-06-21
919

1020
### Added
@@ -382,7 +392,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
382392

383393
- Upgrade OpenAI chat models: **gpt-4-0125-preview**, **gpt-3.5-turbo-0125**
384394

385-
[0.8.44]: https://github.com/carlrobertoh/llm-client/compare/401f403a4e90d4726ff978aa7dd3063b13ee2a40...HEAD
395+
[0.8.45]: https://github.com/carlrobertoh/llm-client/compare/faeb1ab0b9f0042c5a8a525fbbffcfe93ff5b537...HEAD
396+
[0.8.44]: https://github.com/carlrobertoh/llm-client/compare/401f403a4e90d4726ff978aa7dd3063b13ee2a40...faeb1ab0b9f0042c5a8a525fbbffcfe93ff5b537
386397
[0.8.43]: https://github.com/carlrobertoh/llm-client/compare/06d9bd4f90718192bc3de99bf21f8f22e9ced0c1...401f403a4e90d4726ff978aa7dd3063b13ee2a40
387398
[0.8.42]: https://github.com/carlrobertoh/llm-client/compare/0134cc0d52ac6e9eb304b1da4de4158de74446ed...06d9bd4f90718192bc3de99bf21f8f22e9ced0c1
388399
[0.8.41]: https://github.com/carlrobertoh/llm-client/compare/6b04a61815bc444e19e96427f9a31440e42c0852...0134cc0d52ac6e9eb304b1da4de4158de74446ed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ To use the package, you need to use following Maven dependency:
1212
<dependency>
1313
<groupId>ee.carlrobert</groupId>
1414
<artifactId>llm-client</artifactId>
15-
<version>0.8.44</version>
15+
<version>0.8.45</version>
1616
</dependency>
1717
```
1818
Gradle dependency:
1919
```kts
2020
dependencies {
21-
implementation("ee.carlrobert:llm-client:0.8.44")
21+
implementation("ee.carlrobert:llm-client:0.8.45")
2222
}
2323
```
2424

build.gradle.kts

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

99
group = "ee.carlrobert"
10-
version = "0.8.44"
10+
version = "0.8.45"
1111

1212
repositories {
1313
mavenCentral()
@@ -47,8 +47,8 @@ dependencies {
4747
nexusPublishing {
4848
repositories {
4949
sonatype {
50-
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
51-
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
50+
nexusUrl.set(uri("https://ossrh-staging-api.central.sonatype.com/service/local/"))
51+
snapshotRepositoryUrl.set(uri("https://central.sonatype.com/repository/maven-snapshots/"))
5252
}
5353
}
5454
}

0 commit comments

Comments
 (0)