From 468ecd4fe2ec46056c8807170ded1f36cd6c75ac Mon Sep 17 00:00:00 2001 From: Tyler Hutcherson Date: Tue, 3 Dec 2024 13:07:41 -0800 Subject: [PATCH] Release 0.3.7 (#251) Release version 0.3.7 of RedisVL. --- docs/_static/version_names.json | 9 +++++++-- docs/conf.py | 4 +++- docs/overview/cli.ipynb | 2 +- pyproject.toml | 2 +- redisvl/version.py | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/docs/_static/version_names.json b/docs/_static/version_names.json index 9553271b..5d34c3f8 100644 --- a/docs/_static/version_names.json +++ b/docs/_static/version_names.json @@ -1,10 +1,15 @@ [ { - "name": "0.3.6 (stable)", - "version": "0.3.6", + "name": "0.3.7 (stable)", + "version": "0.3.7", "url": "/", "preferred": true }, + { + "name": "0.3.6", + "version": "0.3.6", + "url": "/0.3.6/" + }, { "name": "0.3.5", "version": "0.3.5", diff --git a/docs/conf.py b/docs/conf.py index 50e2db57..e88cde3b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,10 +19,12 @@ # -- Project information ----------------------------------------------------- +from redisvl.version import __version__ + project = 'RedisVL' copyright = '2024, Redis Inc.' author = 'Redis Applied AI' -version = '4' +version = __version__ # The full version, including alpha/beta/rc tags release = version diff --git a/docs/overview/cli.ipynb b/docs/overview/cli.ipynb index 7ec5e684..71f1d4b3 100644 --- a/docs/overview/cli.ipynb +++ b/docs/overview/cli.ipynb @@ -24,7 +24,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "\u001b[32m11:14:08\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.6\n" + "\u001b[32m13:59:20\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.7\n" ] } ], diff --git a/pyproject.toml b/pyproject.toml index 6a9f6ec8..eb04d4a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redisvl" -version = "0.3.6" +version = "0.3.7" description = "Python client library and CLI for using Redis as a vector database" authors = ["Redis Inc. "] license = "MIT" diff --git a/redisvl/version.py b/redisvl/version.py index d7b30e12..8879c6c7 100644 --- a/redisvl/version.py +++ b/redisvl/version.py @@ -1 +1 @@ -__version__ = "0.3.6" +__version__ = "0.3.7"