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
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <enrico.risa@gmail.com>"]
repository = "https://github.com/eclipse-dataplane-core/dataplane-sdk-rust"

Expand Down
8 changes: 8 additions & 0 deletions crates/sdk-axum/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
2 changes: 1 addition & 1 deletion crates/sdk-axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 14 additions & 0 deletions crates/sdk-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
4 changes: 2 additions & 2 deletions crates/sdk-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
6 changes: 3 additions & 3 deletions crates/sdk-tck-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
14 changes: 14 additions & 0 deletions crates/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))