From 4a4d91a8d05960ff894a4695e40b7e663b065110 Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Mon, 26 Jun 2023 22:40:45 +0000 Subject: [PATCH] infra: prepare for release 0.1.15 [generated] Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> --- CHANGELOG.md | 11 +++++++++++ changelog.d/72.feature.md | 4 ---- package.json | 2 +- src/openllm/__about__.py | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) delete mode 100644 changelog.d/72.feature.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ee70f40..576926fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,17 @@ This changelog is managed by towncrier and is compiled at release time. +## [0.1.15](https://github.com/bentoml/openllm/tree/v0.1.15) + +### Features + +- `openllm.Runner` now supports AMD GPU, addresses #65. + + It also respect CUDA_VISIBLE_DEVICES set correctly, allowing disabling GPU and + run on CPU only. + [#72](https://github.com/bentoml/openllm/issues/72) + + ## [0.1.14](https://github.com/bentoml/openllm/tree/v0.1.14) ### Features diff --git a/changelog.d/72.feature.md b/changelog.d/72.feature.md deleted file mode 100644 index 18206128..00000000 --- a/changelog.d/72.feature.md +++ /dev/null @@ -1,4 +0,0 @@ -`openllm.Runner` now supports AMD GPU, addresses #65. - -It also respect CUDA_VISIBLE_DEVICES set correctly, allowing disabling GPU and -run on CPU only. diff --git a/package.json b/package.json index 861ccd4d..8328dc88 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openllm", - "version": "0.1.15.dev0", + "version": "0.1.15", "description": "OpenLLM: Your one stop-and-go solution for serving Large Language Model", "repository": "git@github.com:llmsys/OpenLLM.git", "author": "Aaron Pham <29749331+aarnphm@users.noreply.github.com>", diff --git a/src/openllm/__about__.py b/src/openllm/__about__.py index 078ebcac..977955ed 100644 --- a/src/openllm/__about__.py +++ b/src/openllm/__about__.py @@ -11,4 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.1.15.dev0" +__version__ = "0.1.15"