Skip to content

Commit 7982f7d

Browse files
Bump to 0.3.4 (#228)
Release redisvl==0.3.4
1 parent 01ec8b2 commit 7982f7d

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

docs/_static/version_names.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
[
22
{
3-
"name": "0.3.3 (stable)",
4-
"version": "0.3.3",
3+
"name": "0.3.4 (stable)",
4+
"version": "0.3.4",
55
"url": "/",
66
"preferred": true
77
},
8+
{
9+
"name": "0.3.3",
10+
"version": "0.3.3",
11+
"url": "/0.3.3/"
12+
},
813
{
914
"name": "0.3.2",
1015
"version": "0.3.2",

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
project = 'RedisVL'
2323
copyright = '2024, Redis Inc.'
2424
author = 'Redis Applied AI'
25-
version = '0.3.3'
25+
version = '4'
2626

2727
# The full version, including alpha/beta/rc tags
2828
release = version

docs/overview/cli.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"name": "stdout",
2525
"output_type": "stream",
2626
"text": [
27-
"\u001b[32m16:18:23\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.3\n"
27+
"\u001b[32m10:44:18\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.4\n"
2828
]
2929
}
3030
],

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redisvl"
3-
version = "0.3.3"
3+
version = "0.3.4"
44
description = "Python client library and CLI for using Redis as a vector database"
55
authors = ["Redis Inc. <[email protected]>"]
66
license = "MIT"

redisvl/extensions/llmcache/semantic.py

+1
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,7 @@ def update(self, key: str, **kwargs) -> None:
625625
TypeError if metadata is provided and not of type dict.
626626
627627
.. code-block:: python
628+
628629
key = cache.store('this is a prompt', 'this is a response')
629630
cache.update(key, metadata={"hit_count": 1, "model_name": "Llama-2-7b"})
630631
)

redisvl/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.3"
1+
__version__ = "0.3.4"

0 commit comments

Comments
 (0)