Current section
7 Versions
Jump to
Current section
7 Versions
Compare versions
3
files changed
+15
additions
-4
deletions
| @@ -1,5 +1,16 @@ | |
| 1 1 | # Changelog |
| 2 2 | |
| 3 | + ## v0.4.0 (2024-04-01) |
| 4 | + |
| 5 | + - Update hex packages. |
| 6 | + |
| 7 | + - castore 1.0.5 => 1.0.6 |
| 8 | + - ex_doc 0.31.1 => 0.31.2 |
| 9 | + - finch 0.17.0 => 0.18.0 (minor) |
| 10 | + - makeup_elixir 0.16.1 => 0.16.2 |
| 11 | + - makeup_erlang 0.1.3 => 0.1.5 |
| 12 | + - nimble_pool 1.0.0 => 1.1.0 |
| 13 | + |
| 3 14 | ## v0.3.0 (2024-02-03) |
| 4 15 | |
| 5 16 | - Add `audio/speech` endpoint. |
| @@ -2,7 +2,7 @@ | |
| 2 2 | [{<<"GitHub">>,<<"https://github.com/hipcall/hipcall_openai">>}, |
| 3 3 | {<<"Website">>,<<"https://www.hipcall.com/en-gb/">>}]}. |
| 4 4 | {<<"name">>,<<"hipcall_openai">>}. |
| 5 | - {<<"version">>,<<"0.3.0">>}. |
| 5 | + {<<"version">>,<<"0.4.0">>}. |
| 6 6 | {<<"description">>,<<"Unofficial OpenAI API Wrapper written in Elixir.">>}. |
| 7 7 | {<<"elixir">>,<<"~> 1.14">>}. |
| 8 8 | {<<"app">>,<<"hipcall_openai">>}. |
| @@ -11,7 +11,7 @@ | |
| 11 11 | [[{<<"name">>,<<"finch">>}, |
| 12 12 | {<<"app">>,<<"finch">>}, |
| 13 13 | {<<"optional">>,false}, |
| 14 | - {<<"requirement">>,<<"~> 0.17.0">>}, |
| 14 | + {<<"requirement">>,<<"~> 0.18">>}, |
| 15 15 | {<<"repository">>,<<"hexpm">>}], |
| 16 16 | [{<<"name">>,<<"jason">>}, |
| 17 17 | {<<"app">>,<<"jason">>}, |
| @@ -2,7 +2,7 @@ defmodule HipcallOpenai.MixProject do | |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 4 | @source_url "https://github.com/hipcall/hipcall_openai" |
| 5 | - @version "0.3.0" |
| 5 | + @version "0.4.0" |
| 6 6 | |
| 7 7 | def project do |
| 8 8 | [ |
| @@ -29,7 +29,7 @@ defmodule HipcallOpenai.MixProject do | |
| 29 29 | # Run "mix help deps" to learn about dependencies. |
| 30 30 | defp deps do |
| 31 31 | [ |
| 32 | - {:finch, "~> 0.17.0"}, |
| 32 | + {:finch, "~> 0.18"}, |
| 33 33 | {:jason, "~> 1.4"}, |
| 34 34 | {:nimble_options, "~> 1.1"}, |
| 35 35 | {:ex_doc, "~> 0.31", only: :dev, runtime: false} |