diff --git a/docs/support_changelog.md b/docs/support_changelog.md index 25309e1..3989ea2 100644 --- a/docs/support_changelog.md +++ b/docs/support_changelog.md @@ -31,6 +31,9 @@ - Bugfix: removed errant print statement -## master +## 0.4.2 - Feature: Parameterized IVFFlat and HNSW indexes +- Feature: Delete using metadata filter + +## main diff --git a/src/vecs/__init__.py b/src/vecs/__init__.py index 55f80e5..f4bab45 100644 --- a/src/vecs/__init__.py +++ b/src/vecs/__init__.py @@ -9,12 +9,12 @@ ) __project__ = "vecs" -__version__ = "0.4.1" +__version__ = "0.4.2" __all__ = [ "IndexArgsIVFFlat", - "IndexArgsHSNW", + "IndexArgsHNSW", "IndexMethod", "IndexMeasure", "Collection",