From a3328f2cf86e7d792a66875fc22697d97913e2bb Mon Sep 17 00:00:00 2001 From: SimFG Date: Sun, 23 Jul 2023 20:07:30 +0800 Subject: [PATCH] Update the version to `0.1.37` (#494) Signed-off-by: SimFG --- docs/release_note.md | 4 ++++ gptcache/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/release_note.md b/docs/release_note.md index 51f1786e..bc901b44 100644 --- a/docs/release_note.md +++ b/docs/release_note.md @@ -5,6 +5,10 @@ To read the following content, you need to understand the basic use of GPTCache, - [Readme doc](https://github.com/zilliztech/GPTCache) - [Usage doc](https://github.com/zilliztech/GPTCache/blob/main/docs/usage.md) +## v0.1.37 (2023.7.23) + +1. Support the weaviate vector databse + ## v0.1.36 (2023.7.14) 1. Fix the connection error of the remote redis cache store diff --git a/gptcache/__init__.py b/gptcache/__init__.py index 60a4485c..0ae13a12 100644 --- a/gptcache/__init__.py +++ b/gptcache/__init__.py @@ -1,5 +1,5 @@ """gptcache version""" -__version__ = "0.1.36" +__version__ = "0.1.37" from gptcache.config import Config from gptcache.core import Cache