Skip to content
Merged
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
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ header:
- ".github/PULL_REQUEST_TEMPLATE.md"
- "crates/paimon/tests/**/*.json"
- "**/go.sum"
- "**/DEPENDENCIES.*.tsv"
- ".devcontainer/devcontainer.json"
- "bindings/python/python/pypaimon_rust/py.typed"

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resolver = "2"
members = ["crates/paimon", "crates/integration_tests", "bindings/c", "bindings/python", "crates/integrations/datafusion"]

[workspace.package]
version = "0.0.0"
version = "0.1.0"
edition = "2021"
homepage = "https://paimon.apache.org/docs/rust/"
repository = "https://github.com/apache/paimon-rust"
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Paimon Rust
Copyright 2024 The Apache Software Foundation
Copyright 2024-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
23 changes: 23 additions & 0 deletions bindings/go/DEPENDENCIES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

# Dependencies

Paimon Go Binding is based on the C Binding.
Installation of libffi is required.
Empty file.
2 changes: 1 addition & 1 deletion bindings/python/NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Paimon Rust
Copyright 2024 The Apache Software Foundation
Copyright 2024-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@ exceptions = [
{ crate = "webpki-roots", allow = [
"CDLA-Permissive-2.0",
] },
]
# The MPL license is allowed (binary-only):
# https://www.apache.org/legal/resolved.html#category-b
{ allow = ["MPL-2.0"], crate = "generational-arena" },
]
5 changes: 4 additions & 1 deletion docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@ nav:
- Getting Started: getting-started.md
- DataFusion Integration: datafusion.md
- Architecture: architecture.md
- Releases: releases.md
- Contributing: contributing.md
- Releases:
- Releases: releases.md
- Creating a Release: release/creating-a-release.md
- Verifying a Release Candidate: release/verifying-a-release-candidate.md

markdown_extensions:
- admonition
Expand Down
4 changes: 2 additions & 2 deletions docs/src/datafusion.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ under the License.

```toml
[dependencies]
paimon = "0.0.0"
paimon-datafusion = "0.0.0"
paimon = "0.1.0"
paimon-datafusion = "0.1.0"
datafusion = "52"
tokio = { version = "1", features = ["full"] }
```
Expand Down
4 changes: 2 additions & 2 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.0.0"
paimon = "0.1.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.0.0", features = ["storage-s3"] }
paimon = { version = "0.1.0", features = ["storage-s3"] }
```

Available storage features:
Expand Down
Loading
Loading