diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bf3786c..895bf0e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.6" + ".": "2.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d9f22..7032307 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [2.0.0](https://github.com/structured-world/coordinode-python/compare/v1.0.6...v2.0.0) (2026-08-31) + + +### ⚠ BREAKING CHANGES + +* **client:** LabelInfo.version and EdgeTypeInfo.version are now schema_revision, and EdgeTypeInfo.schema_mode is removed. + +### Features + +* **client:** track CoordiNode 0.5.5 and make the demo stack real ([#80](https://github.com/structured-world/coordinode-python/issues/80)) ([9bb3a00](https://github.com/structured-world/coordinode-python/commit/9bb3a0033ed8382b6363de870c9149b0975843a6)) +* **embedded:** add native Hnsw class for ann-benchmarks integration ([#70](https://github.com/structured-world/coordinode-python/issues/70)) ([a2986a6](https://github.com/structured-world/coordinode-python/commit/a2986a62d4b6e52ddbc1b7e7ab06b3ec7e7785f4)) + + +### Bug Fixes + +* **ci:** drop the uv flags that block every release ([#86](https://github.com/structured-world/coordinode-python/issues/86)) ([2b55f8f](https://github.com/structured-world/coordinode-python/commit/2b55f8f4e58b4227d0f64a7f8e9a41daafb5c470)) + ## [1.0.6](https://github.com/structured-world/coordinode-python/compare/v1.0.5...v1.0.6) (2026-05-03) diff --git a/coordinode-embedded/Cargo.toml b/coordinode-embedded/Cargo.toml index e7425bf..f24ddf7 100644 --- a/coordinode-embedded/Cargo.toml +++ b/coordinode-embedded/Cargo.toml @@ -5,7 +5,7 @@ name = "coordinode-embedded" # through hatch-vcs. maturin has no equivalent and takes the wheel version from # here, so this line has to move with the release or the wheel keeps the name it # had last time and PyPI refuses it as a duplicate. -version = "1.0.6" +version = "2.0.0" edition = "2021" rust-version = "1.90" description = "CoordiNode embedded Python bindings — in-process graph database, no server required" diff --git a/pyproject.toml b/pyproject.toml index 1d85b14..c2966f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [project] name = "coordinode-workspace" -version = "1.0.6" +version = "2.0.0" requires-python = ">=3.11" dependencies = [ "googleapis-common-protos>=1.74.0",