Skip to content

Commit

Permalink
bumo to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sdan committed Apr 11, 2024
1 parent 6d2bf9f commit 74b33d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='vlite',
version='0.2.0',
version='0.2.1',
author='Surya Dantuluri',
author_email='[email protected]',
description='A simple vector database that stores vectors in a numpy array.',
Expand Down
2 changes: 1 addition & 1 deletion vlite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .main import VLite
from .model import EmbeddingModel
__version__ = '0.2.0'
__version__ = '0.2.1'
2 changes: 1 addition & 1 deletion vlite/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
app = FastAPI(
title="VLite API",
description="API for VLite, a simple vector database for text embedding and retrieval.",
version="0.2.0",
version="0.2.1",
)

vlite = VLite()
Expand Down

0 comments on commit 74b33d3

Please sign in to comment.