Skip to content

Commit

Permalink
Cut 0.1.0 (woo!) (#237)
Browse files Browse the repository at this point in the history
Let's do this!
  • Loading branch information
nicklan authored Jun 3, 2024
1 parent 4e6927c commit a551331
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ keywords = ["deltalake", "delta", "datalake"]
license = "Apache-2.0"
repository = "https://github.com/delta-incubator/delta-kernel-rs"
readme = "README.md"
version = "0.0.1"
version = "0.1.0"
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,14 @@ As it is a library, in general you will want to depend on `delta-kernel-rs` by a
dependency to your `Cargo.toml`. For example:

```toml
delta_kernel = "0.0.1"
delta_kernel = "0.1"
```

### Versions and Api Stability
We intend to follow [Semantic Versioning](https://semver.org/). However, in the `0.x` line, the APIs
are still unstable. We therefore may break APIs within minor releases (that is, `0.1` -> `0.2`), but
we will not break APIs in patch releases (`0.1.0` -> `0.1.1`).

## Documentation

- [API Docs](https://docs.rs/delta_kernel/latest/delta_kernel/)
Expand Down
4 changes: 2 additions & 2 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ url = "2"
delta_kernel = { path = "../kernel", default-features = false, features = [
"developer-visibility",
] }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.0.1" }
delta_kernel_ffi_macros = { path = "../ffi-proc-macros", version = "0.1.0" }

# used if we use the default engine to be able to move arrow data into the c-ffi format
arrow-schema = { version = "^51.0", default-features = false, features = [
Expand Down Expand Up @@ -46,4 +46,4 @@ default-engine = [
"arrow-schema",
]
sync-engine = ["delta_kernel/sync-engine"]
developer-visibility = []
developer-visibility = []
2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ uuid = "1.3.0"
z85 = "3.0.5"

# bring in our derive macros
delta_kernel_derive = { path = "../derive-macros", version = "0.0.1" }
delta_kernel_derive = { path = "../derive-macros", version = "0.1.0" }

# used for developer-visibility
visibility = "0.1.0"
Expand Down

0 comments on commit a551331

Please sign in to comment.