This is an automated email from the ASF dual-hosted git repository.
yihua pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hudi-rs.git
The following commit(s) were added to refs/heads/main by this push:
new 593ed83a build(release): bump version to 0.6.0-dev (#749)
593ed83a is described below
commit 593ed83a82010c6e42bdc6e1843629a16b9361a9
Author: Y Ethan Guo <[email protected]>
AuthorDate: Fri Sep 4 18:45:00 2026 -0700
build(release): bump version to 0.6.0-dev (#749)
---
Cargo.toml | 2 +-
cpp/CMakeLists.txt | 2 +-
cpp/Cargo.toml | 4 ++--
crates/datafusion/Cargo.toml | 2 +-
crates/hudi/Cargo.toml | 4 ++--
crates/jvm-ffi/Cargo.toml | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 14db738b..a59ff635 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -26,7 +26,7 @@ members = [
resolver = "3"
[workspace.package]
-version = "0.5.0-dev"
+version = "0.6.0-dev"
edition = "2024"
license = "Apache-2.0"
rust-version = "1.94.1"
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index de9c80f3..e7363e56 100644
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -16,7 +16,7 @@
# under the License.
cmake_minimum_required(VERSION 3.20)
-project(hudi-cpp VERSION 0.5.0)
+project(hudi-cpp VERSION 0.6.0)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
diff --git a/cpp/Cargo.toml b/cpp/Cargo.toml
index 00af632e..3323d41b 100644
--- a/cpp/Cargo.toml
+++ b/cpp/Cargo.toml
@@ -32,8 +32,8 @@ name = "hudi"
crate-type = ["cdylib", "rlib"]
[dependencies]
-hudi = { path = "../crates/hudi", version = "0.5.0-dev" }
-hudi-test = { path = "../crates/test", version = "0.5.0-dev" }
+hudi = { path = "../crates/hudi", version = "0.6.0-dev" }
+hudi-test = { path = "../crates/test", version = "0.6.0-dev" }
cxx = { version = "1.0" }
arrow = { workspace = true , features = ["ffi"]}
arrow-array = { workspace = true , features = ["ffi"]}
diff --git a/crates/datafusion/Cargo.toml b/crates/datafusion/Cargo.toml
index 5a9a8b7d..2718d831 100644
--- a/crates/datafusion/Cargo.toml
+++ b/crates/datafusion/Cargo.toml
@@ -36,7 +36,7 @@ default = ["spill-rocksdb"]
spill-rocksdb = ["hudi-core/spill-rocksdb"]
[dependencies]
-hudi-core = { version = "0.5.0-dev", path = "../core", default-features =
false, features = [
+hudi-core = { version = "0.6.0-dev", path = "../core", default-features =
false, features = [
"datafusion",
] }
# arrow
diff --git a/crates/hudi/Cargo.toml b/crates/hudi/Cargo.toml
index 77c6a151..5b72f12f 100644
--- a/crates/hudi/Cargo.toml
+++ b/crates/hudi/Cargo.toml
@@ -28,8 +28,8 @@ homepage.workspace = true
repository.workspace = true
[dependencies]
-hudi-core = { version = "0.5.0-dev", path = "../core", default-features =
false }
-hudi-datafusion = { version = "0.5.0-dev", path = "../datafusion", optional =
true, default-features = false }
+hudi-core = { version = "0.6.0-dev", path = "../core", default-features =
false }
+hudi-datafusion = { version = "0.6.0-dev", path = "../datafusion", optional =
true, default-features = false }
[features]
default = ["spill-rocksdb"]
diff --git a/crates/jvm-ffi/Cargo.toml b/crates/jvm-ffi/Cargo.toml
index 5905ddb1..40261558 100644
--- a/crates/jvm-ffi/Cargo.toml
+++ b/crates/jvm-ffi/Cargo.toml
@@ -39,6 +39,6 @@ crate-type = ["cdylib", "rlib"]
ffi-test-hooks = []
[dependencies]
-hudi = { path = "../hudi", version = "0.5.0-dev" }
+hudi = { path = "../hudi", version = "0.6.0-dev" }
arrow = { workspace = true, features = ["ffi"] }
tokio = { workspace = true }