Skip to content

Commit 899bd17

Browse files
committed
Bump version to 0.8.2
1 parent de64587 commit 899bd17

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

CHANGELOG.md

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

33
## Unreleased
44

5+
## v0.8.2 (7th May 2026)
6+
7+
- Fixed a build error on recent Rust versions due to a never type fallback change.
8+
59
## v0.8.1 (7th Mar 2024)
610

711
- Updated dependencies, notably `nix`, which fixes building on LoongArch.

Cargo.lock

Lines changed: 3 additions & 3 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
@@ -1,6 +1,6 @@
11
[package]
22
name = "wl-clipboard-rs"
3-
version = "0.8.1" # remember to update html_root_url
3+
version = "0.8.2" # remember to update html_root_url
44
authors = ["Ivan Molodetskikh <yalterz@gmail.com>"]
55
description = "Access to the Wayland clipboard for terminal and other window-less applications."
66
edition = "2021"

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.8.1")]
108+
#![doc(html_root_url = "https://docs.rs/wl-clipboard-rs/0.8.2")]
109109
#![deny(unsafe_code)]
110110

111111
mod common;

wl-clipboard-rs-tools/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wl-clipboard-rs-tools"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
authors = ["Ivan Molodetskikh <yalterz@gmail.com>"]
55
description = "Terminal utilities for accessing the Wayland clipboard."
66
edition = "2021"
@@ -13,7 +13,7 @@ keywords = ["wayland", "clipboard"]
1313
categories = ["command-line-utilities"]
1414

1515
[dependencies]
16-
wl-clipboard-rs = { path = "../", version = "0.8.1" }
16+
wl-clipboard-rs = { path = "../", version = "0.8.2" }
1717
anyhow = "1.0.80"
1818
libc = "0.2.153"
1919
log = "0.4.21"

0 commit comments

Comments
 (0)