Skip to content

Commit 9477468

Browse files
committed
1.2.3 - fix java 1.8 support
1 parent de24e07 commit 9477468

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ Feel free to use, modify, and distribute this code as needed.
88
For Kotlin DSL (`build.gradle.kts`), add this to your dependencies block:
99
```kotlin
1010
dependencies {
11-
implementation("com.cjcrafter:openai:1.2.3")
11+
implementation("com.cjcrafter:openai:1.2.4")
1212
}
1313
```
1414
For Maven projects, add this to your `pom.xml` file in the `<dependencies>` block:
1515
```xml
1616
<dependency>
1717
<groupId>com.cjcrafter</groupId>
1818
<artifactId>openai</artifactId>
19-
<version>1.2.3</version>
19+
<version>1.2.4</version>
2020
</dependency>
2121
```
22-
See the [maven repository](https://central.sonatype.com/artifact/com.cjcrafter/openai/1.2.3) for gradle/ant/etc.
22+
See the [maven repository](https://central.sonatype.com/artifact/com.cjcrafter/openai/1.2.4) for gradle/ant/etc.
2323

2424

2525
# Working Example

build.gradle.kts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import com.github.breadmoirai.githubreleaseplugin.GithubReleaseTask
22

33
group = "com.cjcrafter"
4-
version = "1.2.3"
4+
version = "1.2.4"
55

66
plugins {
77
`java-library`
@@ -25,12 +25,6 @@ dependencies {
2525
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
2626
}
2727

28-
java {
29-
toolchain {
30-
languageVersion.set(JavaLanguageVersion.of(17))
31-
}
32-
}
33-
3428
tasks {
3529
compileJava {
3630
options.encoding = Charsets.UTF_8.name() // We want UTF-8 for everything

0 commit comments

Comments
 (0)