From 49889cb918193b0b09fe94f0e4f137151907030b Mon Sep 17 00:00:00 2001 From: Tyler Hutcherson Date: Thu, 8 Feb 2024 15:54:53 -0500 Subject: [PATCH] Update version to 0.1.0 --- docs/_static/version_names.json | 9 +++++++-- docs/conf.py | 2 +- redisvl/version.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/_static/version_names.json b/docs/_static/version_names.json index d22ba3e9..7d338b8b 100644 --- a/docs/_static/version_names.json +++ b/docs/_static/version_names.json @@ -1,10 +1,15 @@ [ { - "name": "0.0.7 (stable)", - "version": "0.0.7", + "name": "0.1.0 (stable)", + "version": "0.1.0", "url": "/", "preferred": true }, + { + "name": "0.0.7", + "version": "0.0.7", + "url": "/0.0.7/" + }, { "name": "0.0.5", "version": "0.0.5", diff --git a/docs/conf.py b/docs/conf.py index e668b62b..b00758c0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ project = 'RedisVL' copyright = '2024, Redis Inc.' author = 'RedisVentures' -version = "0.0.7" +version = "0.1.0" # The full version, including alpha/beta/rc tags release = version diff --git a/redisvl/version.py b/redisvl/version.py index 6526deb4..3dc1f76b 100644 --- a/redisvl/version.py +++ b/redisvl/version.py @@ -1 +1 @@ -__version__ = "0.0.7" +__version__ = "0.1.0" diff --git a/setup.py b/setup.py index 322b85fc..aad9e6b2 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def read_dev_requirements(): setup( name="redisvl", - version="0.0.7", + version="0.1.0", python_requires=">=3.7", install_requires=read_requirements(), extras_require=extras_require,