Skip to content

Commit 5d781ba

Browse files
committed
prepare release v0.3.0
1 parent 137c6f4 commit 5d781ba

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 0.3.0 - 2023-02-20
4+
### Supported API versions
5+
- OpenAI v1
6+
- Azure OpenAI 2022-12-01
7+
### Added
8+
- Implemented server-sent events using `stream` in `create-completion`
9+
310
## 0.2.0 - 2023-02-15
411
### Supported API versions
512
- OpenAI v1

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ Add the `openai-clojure` dependency
4040
### deps.edn
4141

4242
```
43-
net.clojars.wkok/openai-clojure {:mvn/version "0.2.0"}
43+
net.clojars.wkok/openai-clojure {:mvn/version "0.3.0"}
4444
```
4545

4646
### Leiningen project.clj
4747

4848
```
49-
[net.clojars.wkok/openai-clojure "0.2.0"]
49+
[net.clojars.wkok/openai-clojure "0.3.0"]
5050
```
5151

5252
## Java

build.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(:require [org.corfield.build :as bb]))
44

55
(def lib 'net.clojars.wkok/openai-clojure)
6-
(def version "0.2.0")
6+
(def version "0.3.0")
77

88
(defn test "Run the tests." [opts]
99
(bb/run-tests opts))

doc/intro-azure.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Add the `openai-clojure` dependency
99
### deps.edn
1010

1111
```
12-
net.clojars.wkok/openai-clojure {:mvn/version "0.2.0"}
12+
net.clojars.wkok/openai-clojure {:mvn/version "0.3.0"}
1313
```
1414

1515
### Leiningen project.clj
1616

1717
```
18-
[net.clojars.wkok/openai-clojure "0.2.0"]
18+
[net.clojars.wkok/openai-clojure "0.3.0"]
1919
```
2020

2121
## Authentication

doc/intro.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Add the `openai-clojure` dependency
99
### deps.edn
1010

1111
```
12-
net.clojars.wkok/openai-clojure {:mvn/version "0.2.0"}
12+
net.clojars.wkok/openai-clojure {:mvn/version "0.3.0"}
1313
```
1414

1515
### Leiningen project.clj
1616

1717
```
18-
[net.clojars.wkok/openai-clojure "0.2.0"]
18+
[net.clojars.wkok/openai-clojure "0.3.0"]
1919
```
2020

2121
## Authentication

0 commit comments

Comments
 (0)