Skip to content
Open
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 docs/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Add `paimon` to your `Cargo.toml`:

```toml
[dependencies]
paimon = "0.1.0"
paimon = "0.2.0"
tokio = { version = "1", features = ["full"] }
```

By default, the `storage-fs` (local filesystem) and `storage-memory` (in-memory) backends are enabled. To use additional storage backends, enable the corresponding feature flags:

```toml
[dependencies]
paimon = { version = "0.1.0", features = ["storage-s3"] }
paimon = { version = "0.2.0", features = ["storage-s3"] }
```

Available storage features:
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading