Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "paimon-vindex-core"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "Apache Paimon Vector Index — core Rust library"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "paimon-vindex-ffi"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "Apache Paimon Vector Index C FFI bindings"
license = "Apache-2.0"
Expand All @@ -29,7 +29,7 @@ name = "paimon_vindex_ffi"
crate-type = ["cdylib"]

[dependencies]
paimon-vindex-core = { path = "../core", version = "0.4.0" }
paimon-vindex-core = { path = "../core", version = "0.5.0" }

[build-dependencies]
cbindgen = "0.27"
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<groupId>org.apache.paimon</groupId>
<artifactId>paimon-vector-index-java</artifactId>
<version>0.4.0-SNAPSHOT</version>
<version>0.5.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Apache Paimon Vector Index Java</name>
Expand Down
4 changes: 2 additions & 2 deletions jni/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "paimon-vindex-jni"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
description = "Apache Paimon Vector Index — JNI bindings for Java"
license = "Apache-2.0"
Expand All @@ -29,5 +29,5 @@ name = "paimon_vindex_jni"
crate-type = ["cdylib"]

[dependencies]
paimon-vindex-core = { path = "../core", version = "0.4.0" }
paimon-vindex-core = { path = "../core", version = "0.5.0" }
jni = "0.21"
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "paimon-vindex"
version = "0.4.0"
version = "0.5.0"
description = "Python bindings for Apache Paimon Vector Index"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE", "LICENSE-binary"]
Expand Down
Loading