From 27e4e5181f475a0091300e2952202172494d1dd6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 20:02:02 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 2 +- edc-connector-client/CHANGELOG.md | 8 ++++++++ edc-connector-client/Cargo.toml | 2 +- edc-connector-tui/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33197a1..ddf0636 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -535,7 +535,7 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "edc-connector-client" -version = "0.2.0" +version = "0.2.1" dependencies = [ "reqwest", "serde", diff --git a/edc-connector-client/CHANGELOG.md b/edc-connector-client/CHANGELOG.md index ad3184d..1c70f1e 100644 --- a/edc-connector-client/CHANGELOG.md +++ b/edc-connector-client/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/wolf4ood/edc-rs/compare/v0.2.0...v0.2.1) - 2024-09-23 + +### Added + +- resources pagination ([#16](https://github.com/wolf4ood/edc-rs/pull/16)) +- *(tui)* transfer processes ([#14](https://github.com/wolf4ood/edc-rs/pull/14)) +- *(tui)* contract negotiations ([#12](https://github.com/wolf4ood/edc-rs/pull/12)) + ## [0.2.0](https://github.com/wolf4ood/edc-rs/compare/v0.1.1...v0.2.0) - 2024-09-12 ### Added diff --git a/edc-connector-client/Cargo.toml b/edc-connector-client/Cargo.toml index 2cbc8f9..75e9358 100644 --- a/edc-connector-client/Cargo.toml +++ b/edc-connector-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "edc-connector-client" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "Apache-2.0" description= "A Rust client for EDC" diff --git a/edc-connector-tui/Cargo.toml b/edc-connector-tui/Cargo.toml index 4b3a152..f0a82ba 100644 --- a/edc-connector-tui/Cargo.toml +++ b/edc-connector-tui/Cargo.toml @@ -18,7 +18,7 @@ tokio = {workspace=true} serde = {workspace=true} serde_json = {workspace=true} async-trait = {workspace=true} -edc-connector-client = { path = "../edc-connector-client", version = "0.2.0" } +edc-connector-client = { path = "../edc-connector-client", version = "0.2.1" } enum-ordinalize = "4.3.0" strum = "0.26.2" arboard = { version = "3.4.0", features = ["wayland-data-control"] }