diff --git a/.circleci/release/.release-please-manifest.json b/.circleci/release/.release-please-manifest.json index 931d275..9dc6cef 100644 --- a/.circleci/release/.release-please-manifest.json +++ b/.circleci/release/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.3.4" + ".": "3.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fac2ef5..3f09598 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [3.4.0](https://github.com/nomic-ai/nomic/compare/v3.3.4...v3.4.0) (2025-01-22) + + +### Features + +* show progress bar when embedding using local model ([#363](https://github.com/nomic-ai/nomic/issues/363)) ([98dfece](https://github.com/nomic-ai/nomic/commit/98dfecedbbb595f04ad9aa0a7f14466e55dfeaa1)) + + +### Bug Fixes + +* added missing docstring description for indexed_field in map_data ([#369](https://github.com/nomic-ai/nomic/issues/369)) ([4dfc34c](https://github.com/nomic-ai/nomic/commit/4dfc34c65980ce3cb75e1ebba1758e701a4b1cc7)) +* ValueError returned when calling map_data on blobs and embeddings ([#373](https://github.com/nomic-ai/nomic/issues/373)) ([2f860b4](https://github.com/nomic-ai/nomic/commit/2f860b474c977a64d02654dca53fae90a3624689)) + ## [3.3.4](https://github.com/nomic-ai/nomic/compare/v3.3.3...v3.3.4) (2024-12-12) diff --git a/setup.py b/setup.py index 8e83483..0cc568e 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name="nomic", - version="3.3.4", + version="3.4.0", url="https://github.com/nomic-ai/nomic", description=description, long_description=long_description,