Skip to content

Commit

Permalink
Update the version to 0.1.35 (#473)
Browse files Browse the repository at this point in the history
Signed-off-by: SimFG <[email protected]>
  • Loading branch information
SimFG committed Jul 7, 2023
1 parent fdad45b commit e3e97c4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/release_note.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.35 (2023.6.30)

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)
2. Add report table for easy analysis of cache data

## v0.1.34 (2023.6.30)

1. Add support for Qdrant Vector Store
Expand Down
2 changes: 1 addition & 1 deletion gptcache/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""gptcache version"""
__version__ = "0.1.34"
__version__ = "0.1.35"

from gptcache.config import Config
from gptcache.core import Cache
Expand Down
4 changes: 3 additions & 1 deletion gptcache/utils/log.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import logging

import gptcache

FORMAT = '%(asctime)s - %(thread)d - %(filename)s-%(module)s:%(lineno)s - %(levelname)s: %(message)s'
logging.basicConfig(format=FORMAT)

gptcache_log = logging.getLogger('gptcache')
gptcache_log = logging.getLogger(f'gptcache:{gptcache.__version__}')

0 comments on commit e3e97c4

Please sign in to comment.