diff --git a/CHANGELOG.md b/CHANGELOG.md index ddd2cd0a3d..4b0d83fb40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,14 @@ ## Unreleased +## v0.9.0 (19th June 2024) + - **Breaking** Removed `utils::copy_data`. It forked into a `/usr/bin/env cat` for copying. All internal uses of the function have been changed to simply use `std::io::copy` instead. - Replaced `nix` with `rustix`, following `wayland-rs`. - Replaced the deprecated `structopt` with `clap` itself. +- Updated dependencies. ## v0.8.1 (7th Mar 2024) diff --git a/Cargo.lock b/Cargo.lock index 2a79f91130..0f6f2a5c39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1086,7 +1086,7 @@ checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" [[package]] name = "wl-clipboard-rs" -version = "0.8.1" +version = "0.9.0" dependencies = [ "libc", "log", @@ -1106,7 +1106,7 @@ dependencies = [ [[package]] name = "wl-clipboard-rs-tools" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index a76a7a7334..c87e01ee8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ members = ["wl-clipboard-rs-tools"] [workspace.package] -version = "0.8.1" # remember to update html_root_url +version = "0.9.0" # remember to update html_root_url authors = ["Ivan Molodetskikh "] edition = "2021" license = "MIT/Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 48a54833d0..3cc49f0608 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -105,7 +105,7 @@ //! - `wl-copy`: implements `wl-copy` from [wl-clipboard](https://github.com/bugaevc/wl-clipboard). //! - `wl-clip`: a Wayland version of `xclip`. -#![doc(html_root_url = "https://docs.rs/wl-clipboard-rs/0.8.1")] +#![doc(html_root_url = "https://docs.rs/wl-clipboard-rs/0.9.0")] #![deny(unsafe_code)] mod common; diff --git a/wl-clipboard-rs-tools/Cargo.toml b/wl-clipboard-rs-tools/Cargo.toml index afbeaf028c..fd6b0dc04d 100644 --- a/wl-clipboard-rs-tools/Cargo.toml +++ b/wl-clipboard-rs-tools/Cargo.toml @@ -19,7 +19,7 @@ log.workspace = true mime_guess = "2.0.4" rustix = { workspace = true, features = ["stdio"] } stderrlog = "0.6.0" -wl-clipboard-rs = { path = "../", version = "0.8.1" } +wl-clipboard-rs = { path = "../", version = "0.9.0" } [features] # Link to libwayland-client.so instead of using the Rust implementation.