Skip to content

Commit e3e97c4

Browse files
authored
Update the version to 0.1.35 (#473)
Signed-off-by: SimFG <bang.fu@zilliz.com>
1 parent fdad45b commit e3e97c4

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/release_note.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ To read the following content, you need to understand the basic use of GPTCache,
55
- [Readme doc](https://github.com/zilliztech/GPTCache)
66
- [Usage doc](https://github.com/zilliztech/GPTCache/blob/main/docs/usage.md)
77

8+
## v0.1.35 (2023.6.30)
9+
10+
1. Support the redis as the cache store, usage example: [redis+onnx](https://github.com/zilliztech/GPTCache/blob/main/tests/integration_tests/test_redis_onnx.py)
11+
2. Add report table for easy analysis of cache data
12+
813
## v0.1.34 (2023.6.30)
914

1015
1. Add support for Qdrant Vector Store

gptcache/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""gptcache version"""
2-
__version__ = "0.1.34"
2+
__version__ = "0.1.35"
33

44
from gptcache.config import Config
55
from gptcache.core import Cache

gptcache/utils/log.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import logging
22

3+
import gptcache
4+
35
FORMAT = '%(asctime)s - %(thread)d - %(filename)s-%(module)s:%(lineno)s - %(levelname)s: %(message)s'
46
logging.basicConfig(format=FORMAT)
57

6-
gptcache_log = logging.getLogger('gptcache')
8+
gptcache_log = logging.getLogger(f'gptcache:{gptcache.__version__}')

0 commit comments

Comments
 (0)