diff --git a/docs/_static/version_names.json b/docs/_static/version_names.json index 516a0e77..79323195 100644 --- a/docs/_static/version_names.json +++ b/docs/_static/version_names.json @@ -1,14 +1,19 @@ [ { - "name": "0.3.1 (stable)", - "version": "0.3.1", + "name": "0.3.2 (stable)", + "version": "0.3.2", "url": "/", "preferred": true }, + { + "name": "0.3.1", + "version": "0.3.1", + "url": "/0.3.1/" + }, { "name": "0.3.0", "version": "0.3.0", - "url": "/0.3.0" + "url": "/0.3.0/" }, { "name": "0.2.0", diff --git a/docs/conf.py b/docs/conf.py index e9a001c1..d74b040f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ project = 'RedisVL' copyright = '2024, Redis Inc.' author = 'Redis Applied AI' -version = '0.3.1' +version = '0.3.2' # The full version, including alpha/beta/rc tags release = version diff --git a/docs/overview/cli.ipynb b/docs/overview/cli.ipynb index a19235d7..3fc615d6 100644 --- a/docs/overview/cli.ipynb +++ b/docs/overview/cli.ipynb @@ -24,7 +24,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "\u001b[32m13:33:22\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.1\n" + "\u001b[32m11:51:23\u001b[0m \u001b[34m[RedisVL]\u001b[0m \u001b[1;30mINFO\u001b[0m RedisVL version 0.3.2\n" ] } ], diff --git a/pyproject.toml b/pyproject.toml index bec46389..21af30ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redisvl" -version = "0.3.1" +version = "0.3.2" 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 260c070a..f9aa3e11 100644 --- a/redisvl/version.py +++ b/redisvl/version.py @@ -1 +1 @@ -__version__ = "0.3.1" +__version__ = "0.3.2"