diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e96ee24..a1bf3e18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,24 @@ This changelog is managed by towncrier and is compiled at release time. +## [0.3.8](https://github.com/bentoml/openllm/tree/v0.3.8) + +### Backwards-incompatible Changes + +- Remove embeddings endpoints from the provided API, as I think it is probably not a good fit to have them here, yet. + + This means that `openllm embed` will also be removed. + + Client implementation is also updated to fix 0.3.7 breaking changes with models other than Llama + [#500](https://github.com/bentoml/openllm/issues/500) + + +### Features + +- Add `/v1/models` endpoint for OpenAI compatible API + [#499](https://github.com/bentoml/openllm/issues/499) + + ## [0.3.7](https://github.com/bentoml/openllm/tree/v0.3.7) No significant changes. diff --git a/changelog.d/499.feature.md b/changelog.d/499.feature.md deleted file mode 100644 index db9b1c39..00000000 --- a/changelog.d/499.feature.md +++ /dev/null @@ -1 +0,0 @@ -Add `/v1/models` endpoint for OpenAI compatible API diff --git a/changelog.d/500.breaking.md b/changelog.d/500.breaking.md deleted file mode 100644 index 5de95799..00000000 --- a/changelog.d/500.breaking.md +++ /dev/null @@ -1,5 +0,0 @@ -Remove embeddings endpoints from the provided API, as I think it is probably not a good fit to have them here, yet. - -This means that `openllm embed` will also be removed. - -Client implementation is also updated to fix 0.3.7 breaking changes with models other than Llama diff --git a/openllm-contrib/clojure/package.json b/openllm-contrib/clojure/package.json index 512148e4..de21a187 100644 --- a/openllm-contrib/clojure/package.json +++ b/openllm-contrib/clojure/package.json @@ -1,6 +1,6 @@ { "name": "openllm-clojure-ui", - "version": "", + "version": "0.3.8", "description": "OpenLLM Clojure UI", "repository": { "url": "git@github.com:bentoml/OpenLLM.git", diff --git a/openllm-node/package.json b/openllm-node/package.json index 0efbd70c..22f050fb 100644 --- a/openllm-node/package.json +++ b/openllm-node/package.json @@ -1,6 +1,6 @@ { "name": "@bentoml/openllm-node", - "version": "0.3.8.dev0", + "version": "0.3.8", "description": "NodeJS library for OpenLLM", "type": "module", "repository": { diff --git a/openllm-python/CHANGELOG.md b/openllm-python/CHANGELOG.md index 5e96ee24..a1bf3e18 100644 --- a/openllm-python/CHANGELOG.md +++ b/openllm-python/CHANGELOG.md @@ -18,6 +18,24 @@ This changelog is managed by towncrier and is compiled at release time. +## [0.3.8](https://github.com/bentoml/openllm/tree/v0.3.8) + +### Backwards-incompatible Changes + +- Remove embeddings endpoints from the provided API, as I think it is probably not a good fit to have them here, yet. + + This means that `openllm embed` will also be removed. + + Client implementation is also updated to fix 0.3.7 breaking changes with models other than Llama + [#500](https://github.com/bentoml/openllm/issues/500) + + +### Features + +- Add `/v1/models` endpoint for OpenAI compatible API + [#499](https://github.com/bentoml/openllm/issues/499) + + ## [0.3.7](https://github.com/bentoml/openllm/tree/v0.3.7) No significant changes. diff --git a/package.json b/package.json index 589da678..01716f81 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bentoml/openllm-monorepo", - "version": "0.3.8.dev0", + "version": "0.3.8", "description": "OpenLLM: Operating LLMs in production", "author": "Aaron Pham <29749331+aarnphm@users.noreply.github.com>", "license": "Apache-2.0",