diff --git a/Cargo.lock b/Cargo.lock index 1df25ac..dfd0673 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -633,7 +633,7 @@ dependencies = [ [[package]] name = "dataplane-sdk" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-trait", "bon", @@ -650,7 +650,7 @@ dependencies = [ [[package]] name = "dataplane-sdk-axum" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-trait", @@ -668,7 +668,7 @@ dependencies = [ [[package]] name = "dataplane-sdk-postgres" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-trait", "bon", @@ -683,7 +683,7 @@ dependencies = [ [[package]] name = "dataplane-sdk-tck-tests" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-trait", @@ -888,7 +888,7 @@ dependencies = [ [[package]] name = "example-common" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 6ee43c0..b3a6114 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = ["crates/*", "examples/*"] [workspace.package] license = "Apache-2.0" edition = "2024" -version = "0.1.0" +version = "0.1.1" authors = ["Enrico Risa "] repository = "https://github.com/eclipse-dataplane-core/dataplane-sdk-rust" diff --git a/crates/sdk-axum/CHANGELOG.md b/crates/sdk-axum/CHANGELOG.md new file mode 100644 index 0000000..11bddf3 --- /dev/null +++ b/crates/sdk-axum/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] diff --git a/crates/sdk-axum/Cargo.toml b/crates/sdk-axum/Cargo.toml index 9c87d50..49be5cd 100644 --- a/crates/sdk-axum/Cargo.toml +++ b/crates/sdk-axum/Cargo.toml @@ -11,7 +11,7 @@ description = "Axum integration for the dataplane-sdk Data Plane Signaling API" axum.workspace=true serde_json.workspace=true tracing.workspace=true -dataplane-sdk = { path = "../sdk", version = "0.1.0" } +dataplane-sdk = { path = "../sdk", version = "0.1.1" } anyhow.workspace=true serde.workspace=true diff --git a/crates/sdk-postgres/CHANGELOG.md b/crates/sdk-postgres/CHANGELOG.md new file mode 100644 index 0000000..a9304c8 --- /dev/null +++ b/crates/sdk-postgres/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1](https://github.com/eclipse-dataplane-core/dataplane-sdk-rust/compare/dataplane-sdk-postgres-v0.1.0...dataplane-sdk-postgres-v0.1.1) - 2026-07-29 + +### Added + +- add support for claims in the start/prepare messages ([#48](https://github.com/eclipse-dataplane-core/dataplane-sdk-rust/pull/48)) diff --git a/crates/sdk-postgres/Cargo.toml b/crates/sdk-postgres/Cargo.toml index cd2c955..6277df3 100644 --- a/crates/sdk-postgres/Cargo.toml +++ b/crates/sdk-postgres/Cargo.toml @@ -8,7 +8,7 @@ repository.workspace = true description = "PostgreSQL backend for the dataplane-sdk data plane state store" [dependencies] -dataplane-sdk = { path = "../sdk", version = "0.1.0" } +dataplane-sdk = { path = "../sdk", version = "0.1.1" } async-trait.workspace=true sqlx = { workspace=true, features = ["postgres"]} bon.workspace=true @@ -20,7 +20,7 @@ serde_json.workspace=true tokio.workspace=true testcontainers = { workspace = true } testcontainers-modules = { workspace = true, features = ["postgres"] } -dataplane-sdk = { path = "../sdk", version = "0.1.0", features = ["test"] } +dataplane-sdk = { path = "../sdk", version = "0.1.1", features = ["test"] } [lints] workspace = true diff --git a/crates/sdk-tck-tests/Cargo.toml b/crates/sdk-tck-tests/Cargo.toml index b6bbb8c..655d51e 100644 --- a/crates/sdk-tck-tests/Cargo.toml +++ b/crates/sdk-tck-tests/Cargo.toml @@ -7,9 +7,9 @@ authors.workspace = true publish = false [dev-dependencies] -dataplane-sdk = { path = "../sdk", version = "0.1.0" } -dataplane-sdk-postgres = { path = "../sdk-postgres", version = "0.1.0" } -dataplane-sdk-axum = { path = "../sdk-axum", version = "0.1.0" } +dataplane-sdk = { path = "../sdk", version = "0.1.1" } +dataplane-sdk-postgres = { path = "../sdk-postgres", version = "0.1.1" } +dataplane-sdk-axum = { path = "../sdk-axum", version = "0.1.1" } sqlx = { workspace=true, features = ["postgres"]} tokio.workspace=true testcontainers = { workspace = true } diff --git a/crates/sdk/CHANGELOG.md b/crates/sdk/CHANGELOG.md new file mode 100644 index 0000000..0d03803 --- /dev/null +++ b/crates/sdk/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1](https://github.com/eclipse-dataplane-core/dataplane-sdk-rust/compare/dataplane-sdk-v0.1.0...dataplane-sdk-v0.1.1) - 2026-07-29 + +### Added + +- add support for claims in the start/prepare messages ([#48](https://github.com/eclipse-dataplane-core/dataplane-sdk-rust/pull/48))