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