Skip to content

Commit c71c272

Browse files
committed
Update to 1.2.3
1 parent f6ab06d commit c71c272

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,21 @@ works by wrapping HTTPS requests with java variables, making the generated resul
55
Feel free to use, modify, and distribute this code as needed.
66

77
# Installation
8-
For Gradle projects, add this to your `build.gradle` file in the dependencies block:
9-
```groovy
10-
dependencies {
11-
implementation 'com.cjcrafter:openai:1.0.0'
12-
}
13-
```
14-
Or, if you are using Kotlin DSL (`build.gradle.kts`), add this to your dependencies block:
8+
For Kotlin DSL (`build.gradle.kts`), add this to your dependencies block:
159
```kotlin
1610
dependencies {
17-
implementation("com.cjcrafter:openai:1.0.0")
11+
implementation("com.cjcrafter:openai:1.2.3")
1812
}
1913
```
2014
For Maven projects, add this to your `pom.xml` file in the `<dependencies>` block:
2115
```xml
2216
<dependency>
2317
<groupId>com.cjcrafter</groupId>
2418
<artifactId>openai</artifactId>
25-
<version>1.0.0</version>
19+
<version>1.2.3</version>
2620
</dependency>
2721
```
28-
See the [maven repository](https://central.sonatype.com/artifact/com.cjcrafter/openai/1.0.0) for gradle/ant/etc.
22+
See the [maven repository](https://central.sonatype.com/artifact/com.cjcrafter/openai/1.2.3) for gradle/ant/etc.
2923

3024

3125
# Working Example

build.gradle.kts

Lines changed: 1 addition & 1 deletion
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.2"
4+
version = "1.2.3"
55

66
plugins {
77
`java-library`

0 commit comments

Comments
 (0)