From a1ccaea8faa56ac68f4bb40f51790d07062a91e6 Mon Sep 17 00:00:00 2001 From: hechao Date: Sun, 5 Jul 2026 15:21:45 +0800 Subject: [PATCH 1/3] docs: refresh Rust docs version and project status --- docs/src/getting-started.md | 6 +++--- docs/src/index.md | 2 +- docs/src/sql.md | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 74b50388..a5c07577 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -25,7 +25,7 @@ Add `paimon` to your `Cargo.toml`: ```toml [dependencies] -paimon = "0.1.0" +paimon = "0.2.0" tokio = { version = "1", features = ["full"] } ``` @@ -33,7 +33,7 @@ By default, the `storage-fs` (local filesystem) and `storage-memory` (in-memory) ```toml [dependencies] -paimon = { version = "0.1.0", features = ["storage-s3"] } +paimon = { version = "0.2.0", features = ["storage-s3"] } ``` Available storage features: @@ -57,7 +57,7 @@ Mosaic data files can be read by enabling the `mosaic` feature: ```toml [dependencies] -paimon = { version = "0.1.0", features = ["mosaic"] } +paimon = { version = "0.2.0", features = ["mosaic"] } ``` The current Mosaic support is read-only. Paimon Rust can read existing `.mosaic` data files in a Paimon table, but it does not write Mosaic data files yet. diff --git a/docs/src/index.md b/docs/src/index.md index 252c9dd7..a82974ad 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -34,7 +34,7 @@ Key features: ## Status -The project is under active development, tracking the [0.1.0 milestone](https://github.com/apache/paimon-rust/issues/3). +The project is under active development (0.3.0 in development). ## License diff --git a/docs/src/sql.md b/docs/src/sql.md index 88b32100..b97a685b 100644 --- a/docs/src/sql.md +++ b/docs/src/sql.md @@ -25,8 +25,8 @@ under the License. ```toml [dependencies] -paimon = "0.1.0" -paimon-datafusion = "0.1.0" +paimon = "0.2.0" +paimon-datafusion = "0.2.0" datafusion = "53" tokio = { version = "1", features = ["full"] } ``` @@ -35,8 +35,8 @@ To query tables with Mosaic data files, enable the `mosaic` feature on both crat ```toml [dependencies] -paimon = { version = "0.1.0", features = ["mosaic"] } -paimon-datafusion = { version = "0.1.0", features = ["mosaic"] } +paimon = { version = "0.2.0", features = ["mosaic"] } +paimon-datafusion = { version = "0.2.0", features = ["mosaic"] } datafusion = "53" tokio = { version = "1", features = ["full"] } ``` @@ -572,8 +572,8 @@ Paimon supports full-text search via the Tantivy search engine. The `full_text_s ```toml [dependencies] -paimon = { version = "0.1.0", features = ["fulltext"] } -paimon-datafusion = { version = "0.1.0", features = ["fulltext"] } +paimon = { version = "0.2.0", features = ["fulltext"] } +paimon-datafusion = { version = "0.2.0", features = ["fulltext"] } ``` ### Registration From 0d8e95c93a2ded87d7f6f3eae77a7fd7541aec06 Mon Sep 17 00:00:00 2001 From: hechao Date: Sun, 5 Jul 2026 16:02:03 +0800 Subject: [PATCH 2/3] docs: refresh Rust docs version and project status --- docs/src/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index a5c07577..362564a5 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -25,7 +25,7 @@ Add `paimon` to your `Cargo.toml`: ```toml [dependencies] -paimon = "0.2.0" +paimon = "0.3.0" tokio = { version = "1", features = ["full"] } ``` @@ -33,7 +33,7 @@ By default, the `storage-fs` (local filesystem) and `storage-memory` (in-memory) ```toml [dependencies] -paimon = { version = "0.2.0", features = ["storage-s3"] } +paimon = { version = "0.3.0", features = ["storage-s3"] } ``` Available storage features: @@ -57,7 +57,7 @@ Mosaic data files can be read by enabling the `mosaic` feature: ```toml [dependencies] -paimon = { version = "0.2.0", features = ["mosaic"] } +paimon = { version = "0.3.0", features = ["mosaic"] } ``` The current Mosaic support is read-only. Paimon Rust can read existing `.mosaic` data files in a Paimon table, but it does not write Mosaic data files yet. From a2ac04f2c78cb1f8540e6518d438b04cb9ee7c3d Mon Sep 17 00:00:00 2001 From: hechao Date: Sun, 5 Jul 2026 16:19:12 +0800 Subject: [PATCH 3/3] docs: use published version 0.2.0 in getting-started install examples --- docs/src/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/getting-started.md b/docs/src/getting-started.md index 362564a5..a5c07577 100644 --- a/docs/src/getting-started.md +++ b/docs/src/getting-started.md @@ -25,7 +25,7 @@ Add `paimon` to your `Cargo.toml`: ```toml [dependencies] -paimon = "0.3.0" +paimon = "0.2.0" tokio = { version = "1", features = ["full"] } ``` @@ -33,7 +33,7 @@ By default, the `storage-fs` (local filesystem) and `storage-memory` (in-memory) ```toml [dependencies] -paimon = { version = "0.3.0", features = ["storage-s3"] } +paimon = { version = "0.2.0", features = ["storage-s3"] } ``` Available storage features: @@ -57,7 +57,7 @@ Mosaic data files can be read by enabling the `mosaic` feature: ```toml [dependencies] -paimon = { version = "0.3.0", features = ["mosaic"] } +paimon = { version = "0.2.0", features = ["mosaic"] } ``` The current Mosaic support is read-only. Paimon Rust can read existing `.mosaic` data files in a Paimon table, but it does not write Mosaic data files yet.