From c31aa58fe6f1440a01943658353b29b8fce2924e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Cortier?= <3809077+CBenoit@users.noreply.github.com> Date: Tue, 17 Jun 2025 07:20:53 -0400 Subject: [PATCH] chore(release-plz): make release-plz happy with ironrdp-dvc-pipe-proxy (#822) --- crates/ironrdp-dvc-pipe-proxy/CHANGELOG.md | 6 ------ crates/ironrdp-dvc-pipe-proxy/Cargo.toml | 10 ++++------ 2 files changed, 4 insertions(+), 12 deletions(-) delete mode 100644 crates/ironrdp-dvc-pipe-proxy/CHANGELOG.md diff --git a/crates/ironrdp-dvc-pipe-proxy/CHANGELOG.md b/crates/ironrdp-dvc-pipe-proxy/CHANGELOG.md deleted file mode 100644 index 1d013ff9..00000000 --- a/crates/ironrdp-dvc-pipe-proxy/CHANGELOG.md +++ /dev/null @@ -1,6 +0,0 @@ -# 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). diff --git a/crates/ironrdp-dvc-pipe-proxy/Cargo.toml b/crates/ironrdp-dvc-pipe-proxy/Cargo.toml index 486c8e74..628e8d2d 100644 --- a/crates/ironrdp-dvc-pipe-proxy/Cargo.toml +++ b/crates/ironrdp-dvc-pipe-proxy/Cargo.toml @@ -16,14 +16,13 @@ doctest = false test = false [dependencies] -ironrdp-core.path = "../ironrdp-core" -ironrdp-dvc.path = "../ironrdp-dvc" -ironrdp-pdu.path = "../ironrdp-pdu" -ironrdp-svc.path = "../ironrdp-svc" +ironrdp-core = { path = "../ironrdp-core", version = "0.1" } +ironrdp-pdu = { path = "../ironrdp-pdu", version = "0.5" } # public (PduResult type) +ironrdp-dvc = { path = "../ironrdp-dvc", version = "0.3" } +ironrdp-svc = { path = "../ironrdp-svc", version = "0.4" } # public (SvcMessage type) tracing = { version = "0.1", features = ["log"] } - [target.'cfg(windows)'.dependencies] widestring = "1" windows = { version = "0.61", features = [ @@ -35,6 +34,5 @@ windows = { version = "0.61", features = [ "Win32_System_IO", ] } - [lints] workspace = true