This is an automated email from the ASF dual-hosted git repository.
yuxia pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss-rust.git
The following commit(s) were added to refs/heads/main by this push:
new ee8beee chore: update testing fluss image to 0.9.0 (#426)
ee8beee is described below
commit ee8beee06874661b605aaba31df4bfac2f640690
Author: aicontentcreate2023-star <[email protected]>
AuthorDate: Thu Mar 5 12:00:37 2026 +0800
chore: update testing fluss image to 0.9.0 (#426)
---
bindings/cpp/test/test_utils.h | 2 +-
bindings/python/test/conftest.py | 2 +-
crates/fluss/tests/integration/fluss_cluster.rs | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bindings/cpp/test/test_utils.h b/bindings/cpp/test/test_utils.h
index 98d119a..05c32cf 100644
--- a/bindings/cpp/test/test_utils.h
+++ b/bindings/cpp/test/test_utils.h
@@ -50,7 +50,7 @@
namespace fluss_test {
static constexpr const char* kFlussImage = "apache/fluss";
-static constexpr const char* kFlussVersion = "0.8.0-incubating";
+static constexpr const char* kFlussVersion = "0.9.0-incubating";
static constexpr const char* kNetworkName = "fluss-cpp-test-network";
static constexpr const char* kZookeeperName = "zookeeper-cpp-test";
static constexpr const char* kCoordinatorName = "coordinator-server-cpp-test";
diff --git a/bindings/python/test/conftest.py b/bindings/python/test/conftest.py
index 0a969e8..bb8d18b 100644
--- a/bindings/python/test/conftest.py
+++ b/bindings/python/test/conftest.py
@@ -34,7 +34,7 @@ import pytest_asyncio
import fluss
FLUSS_IMAGE = "apache/fluss"
-FLUSS_VERSION = "0.8.0-incubating"
+FLUSS_VERSION = "0.9.0-incubating"
BOOTSTRAP_SERVERS_ENV = os.environ.get("FLUSS_BOOTSTRAP_SERVERS")
diff --git a/crates/fluss/tests/integration/fluss_cluster.rs
b/crates/fluss/tests/integration/fluss_cluster.rs
index a2e9157..5dc3e33 100644
--- a/crates/fluss/tests/integration/fluss_cluster.rs
+++ b/crates/fluss/tests/integration/fluss_cluster.rs
@@ -25,7 +25,7 @@ use testcontainers::core::ContainerPort;
use testcontainers::runners::AsyncRunner;
use testcontainers::{ContainerAsync, GenericImage, ImageExt};
-const FLUSS_VERSION: &str = "0.8.0-incubating";
+const FLUSS_VERSION: &str = "0.9.0-incubating";
const FLUSS_IMAGE: &str = "apache/fluss";
pub struct FlussTestingClusterBuilder {