diff --git a/docs/release_note.md b/docs/release_note.md index d2fb3aec..8f7cb605 100644 --- a/docs/release_note.md +++ b/docs/release_note.md @@ -5,6 +5,9 @@ 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.40 (2023.8.23) +1. Support the redis eviction + ## v0.1.38 (2023.7.31) Some improvements: diff --git a/gptcache/__init__.py b/gptcache/__init__.py index b7408efe..ef2a676e 100644 --- a/gptcache/__init__.py +++ b/gptcache/__init__.py @@ -1,5 +1,5 @@ """gptcache version""" -__version__ = "0.1.39.1" +__version__ = "0.1.40" from gptcache.config import Config from gptcache.core import Cache