diff --git a/docs/release_notes.md b/docs/release_notes.md new file mode 100644 index 0000000..18c78e8 --- /dev/null +++ b/docs/release_notes.md @@ -0,0 +1,11 @@ +# Release 1.1.6 (4/29/24) + +`faiss_embedding.py` now by default stores a cached embedding at the user's cache directory (determined by `platformdirs`). + +If `cache_embedding` is enabled (which is turned on by default), this file computes a hash of the free text values. The next time when the server is run, if the database values remains unchanged, this file will directly use the cached embeddings. If there are changes to the underlying values, this file will recompute the embeddings. + +Check API documentation for the `add` function at [here](https://stanford-oval.github.io/suql/suql/faiss_embedding.html#suql.faiss_embedding.MultipleEmbeddingStore.add). + +# Release 1.1.5 (4/25/24) + +Bug fix for #15. \ No newline at end of file diff --git a/setup.py b/setup.py index 16eb278..16bdd36 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # Package metadata name = "suql" -version = "1.1.5" +version = "1.1.6" description = "Structured and Unstructured Query Language (SUQL) Python API" author = "Shicheng Liu" author_email = "shicheng@cs.stanford.edu"