From cd14ad723b8ae847e5160883d289df08892183aa Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Tue, 24 Oct 2023 16:26:23 -0700 Subject: [PATCH] docs: update changelog for 0.4.0 (#629) --- CHANGELOG.md | 11 ++++++++++- website/docs/installation/modal/app.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b121bd844e..fc32b6a58df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,20 @@ -# v0.4.0 [Unreleased] +# v0.5.0 [Unreleased] ## Features + +## Fixes and Improvements + +# v0.4.0 + +## Features + * Supports golang: https://github.com/TabbyML/tabby/issues/553 * Supports ruby: https://github.com/TabbyML/tabby/pull/597 * Supports using local directory for `Repository.git_url`: use `file:///path/to/repo` to specify a local directory. +* A new UI design for webserver. ## Fixes and Improvements + * Improve snippets retrieval by dedup candidates to existing content + snippets: https://github.com/TabbyML/tabby/pull/582 # v0.3.1 diff --git a/website/docs/installation/modal/app.py b/website/docs/installation/modal/app.py index 711b870c368..879585b2707 100644 --- a/website/docs/installation/modal/app.py +++ b/website/docs/installation/modal/app.py @@ -4,7 +4,7 @@ from modal import Image, Stub, asgi_app, gpu -IMAGE_NAME = "tabbyml/tabby:0.3.1" +IMAGE_NAME = "tabbyml/tabby:0.4.0" MODEL_ID = "TabbyML/StarCoder-1B" GPU_CONFIG = gpu.T4()