Skip to content

Commit ef0f538

Browse files
author
Sam Partee
committed
Update version to 0.0.7
1 parent 3bed876 commit ef0f538

File tree

5 files changed

+22
-17
lines changed

5 files changed

+22
-17
lines changed

docs/_static/version_names.json

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
[
2-
{
3-
"name": "0.0.5 (stable)",
4-
"version": "0.0.5",
5-
"url": "/",
6-
"preferred": true
7-
},
8-
{
9-
"name": "0.0.4",
10-
"version": "0.0.4",
11-
"url": "/0.0.4/"
12-
}
2+
{
3+
"name": "0.0.7 (stable)",
4+
"version": "0.0.7",
5+
"url": "/",
6+
"preferred": true
7+
},
8+
{
9+
"name": "0.0.5",
10+
"version": "0.0.5",
11+
"url": "/0.0.5/"
12+
},
13+
{
14+
"name": "0.0.4",
15+
"version": "0.0.4",
16+
"url": "/0.0.4/"
17+
}
1318
]

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
# -- Project information -----------------------------------------------------
1818

1919
project = 'RedisVL'
20-
copyright = '2023, Redis Inc.'
20+
copyright = '2024, Redis Inc.'
2121
author = 'RedisVentures'
22-
version = "0.1.0"
22+
version = "0.0.7"
2323

2424
# The full version, including alpha/beta/rc tags
2525
release = version
@@ -101,7 +101,7 @@
101101
"navbar_align": "content", # [left, content, right] For testing that the navbar items align properly
102102
"secondary_sidebar_items": ["page-toc", "edit-this-page", "sourcelink"],
103103
"switcher": {
104-
"json_url": "/_static/version_names.json",
104+
"json_url": "_static/version_names.json",
105105
"version_match": version,
106106
},
107107
"navbar_start": ["navbar-logo", "version-switcher"],

redisvl/utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import numpy as np
21
from typing import Any, List
32

3+
import numpy as np
44

55
# required modules
66
REDIS_REQUIRED_MODULES = [

redisvl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.6"
1+
__version__ = "0.0.7"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read_dev_requirements():
2424

2525
setup(
2626
name="redisvl",
27-
version="0.0.6",
27+
version="0.0.7",
2828
python_requires=">=3.7",
2929
install_requires=read_requirements(),
3030
extras_require=extras_require,

0 commit comments

Comments
 (0)