Skip to content

Commit 2f6a885

Browse files
committed
Bump version to 0.9.3
1 parent 237b581 commit 2f6a885

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Unreleased
44

5+
## v0.9.3 (13th Dec 2025)
6+
7+
- Switched copying and wl-copy from tempfile to in-memory data storage.
8+
- Added more text MIME heuristics to `utils::is_text` based on wl-clipboard. In particular, this fixes copying shell scripts and XML files.
9+
- Added `paste::get_mime_types_ordered` that preserves the ordering of MIME types offered by the copying application. This can sometimes be used to determine the "native" data type of the copied contents. `wl-paste -l` was updated to show this ordered list.
10+
- Updated dependencies, notably rustix to v1 and windows-sys.
11+
- Minimized version requirements of other dependencies.
12+
513
## v0.9.2 (14th Mar 2025)
614

715
- Added support for the `ext-data-control` protocol. It will be used instead of `wlr-data-control` when available.

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = ["wl-clipboard-rs-tools"]
33

44
[workspace.package]
5-
version = "0.9.2" # remember to update html_root_url
5+
version = "0.9.3" # remember to update html_root_url
66
authors = ["Ivan Molodetskikh <yalterz@gmail.com>"]
77
edition = "2021"
88
license = "MIT/Apache-2.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
//! - `wl-copy`: implements `wl-copy` from [wl-clipboard](https://github.com/bugaevc/wl-clipboard).
106106
//! - `wl-clip`: a Wayland version of `xclip`.
107107
108-
#![doc(html_root_url = "https://docs.rs/wl-clipboard-rs/0.9.2")]
108+
#![doc(html_root_url = "https://docs.rs/wl-clipboard-rs/0.9.3")]
109109
#![deny(unsafe_code)]
110110

111111
mod common;

wl-clipboard-rs-tools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ log.workspace = true
1919
mime_guess = "2"
2020
rustix = { workspace = true, features = ["stdio"] }
2121
stderrlog = "0.6"
22-
wl-clipboard-rs = { path = "../", version = "0.9.2" }
22+
wl-clipboard-rs = { path = "../", version = "0.9.3" }
2323

2424
[build-dependencies]
2525
clap = { version = "4", features = ["derive", "wrap_help"] }

0 commit comments

Comments
 (0)