Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
restlessronin committed Jul 29, 2024
1 parent 86df1c4 commit 888330c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ body:
id: lib-version
attributes:
label: Library version
placeholder: openai_ex v0.8.1
placeholder: openai_ex 0.8.2
validations:
required: true
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule OpenaiEx.MixProject do
use Mix.Project

@version "0.8.1"
@version "0.8.2"
@description "Community maintained Elixir library for OpenAI API"
@source_url "https://github.com/restlessronin/openai_ex"

Expand Down
2 changes: 1 addition & 1 deletion notebooks/cleanup.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.8.1"},
{:openai_ex, "~> 0.8.2"},
{:kino, "~> 0.13.2"}
])
```
Expand Down
2 changes: 1 addition & 1 deletion notebooks/dlai_orderbot.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.8.1"},
{:openai_ex, "~> 0.8.2"},
{:kino, "~> 0.13.2"}
])

Expand Down
2 changes: 1 addition & 1 deletion notebooks/images.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.8.1"},
{:openai_ex, "~> 0.8.2"},
{:kino, "~> 0.13.2"}
])

Expand Down
2 changes: 1 addition & 1 deletion notebooks/streaming_orderbot.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.8.1"},
{:openai_ex, "~> 0.8.2"},
{:kino, "~> 0.13.2"}
])

Expand Down
6 changes: 3 additions & 3 deletions notebooks/userguide.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
Mix.install([
{:openai_ex, "~> 0.8.1"},
{:openai_ex, "~> 0.8.2"},
# {:openai_ex, path: Path.join(__DIR__, "..")},
{:kino, "~> 0.13.2"}
])
Expand Down Expand Up @@ -43,7 +43,7 @@ Add the following code to the first connection cell:
```elixir
Mix.install(
[
{:openai_ex, "~> 0.8.1"}
{:openai_ex, "~> 0.8.2"}
]
)
```
Expand All @@ -57,7 +57,7 @@ Add the following to your mix.exs file:
```elixir
def deps do
[
{:openai_ex, "~> 0.8.1"}
{:openai_ex, "~> 0.8.2"}
]
end
```
Expand Down

0 comments on commit 888330c

Please sign in to comment.