Skip to content

Commit

Permalink
Bump to 0.3.4 (#228)
Browse files Browse the repository at this point in the history
Release redisvl==0.3.4
  • Loading branch information
tylerhutcherson authored Oct 2, 2024
1 parent 01ec8b2 commit 7982f7d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
9 changes: 7 additions & 2 deletions docs/_static/version_names.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
[
{
"name": "0.3.3 (stable)",
"version": "0.3.3",
"name": "0.3.4 (stable)",
"version": "0.3.4",
"url": "/",
"preferred": true
},
{
"name": "0.3.3",
"version": "0.3.3",
"url": "/0.3.3/"
},
{
"name": "0.3.2",
"version": "0.3.2",
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
project = 'RedisVL'
copyright = '2024, Redis Inc.'
author = 'Redis Applied AI'
version = '0.3.3'
version = '4'

# The full version, including alpha/beta/rc tags
release = version
Expand Down
2 changes: 1 addition & 1 deletion docs/overview/cli.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"\u001b[32m16:18:23\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.3\n"
"\u001b[32m10:44:18\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.4\n"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "redisvl"
version = "0.3.3"
version = "0.3.4"
description = "Python client library and CLI for using Redis as a vector database"
authors = ["Redis Inc. <applied.ai@redis.com>"]
license = "MIT"
Expand Down
1 change: 1 addition & 0 deletions redisvl/extensions/llmcache/semantic.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,7 @@ def update(self, key: str, **kwargs) -> None:
TypeError if metadata is provided and not of type dict.
.. code-block:: python
key = cache.store('this is a prompt', 'this is a response')
cache.update(key, metadata={"hit_count": 1, "model_name": "Llama-2-7b"})
)
Expand Down
2 changes: 1 addition & 1 deletion redisvl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.3"
__version__ = "0.3.4"

0 comments on commit 7982f7d

Please sign in to comment.