Skip to content

Commit

Permalink
feat: bump to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gusye1234 committed Sep 18, 2024
1 parent e8750bd commit bbd27c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nano_vectordb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .dbs import NanoVectorDB

__version__ = "0.0.3"
__version__ = "0.0.4"
__author__ = "Jianbai Ye"
__url__ = "https://github.com/gusye1234/nano-vectordb"
2 changes: 1 addition & 1 deletion nano_vectordb/dbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def save(self):
**self.__storage,
"matrix": array_to_buffer_string(self.__storage["matrix"]),
}
with open(self.storage_file, "w") as f:
with open(self.storage_file, "w", encoding="utf-8") as f:
json.dump(storage, f, ensure_ascii=False)

def __len__(self):
Expand Down

0 comments on commit bbd27c3

Please sign in to comment.