Bump version to 0.8.1

This commit is contained in:
Ivan Molodetskikh
2024-03-07 10:05:46 +04:00
parent 313c0b8437
commit 1e24432a1f
4 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@@ -1083,7 +1083,7 @@ checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8"
[[package]]
name = "wl-clipboard-rs"
version = "0.8.0"
version = "0.8.1"
dependencies = [
"derive-new",
"libc",
@@ -1104,7 +1104,7 @@ dependencies = [
[[package]]
name = "wl-clipboard-rs-tools"
version = "0.8.0"
version = "0.8.1"
dependencies = [
"anyhow",
"libc",

View File

@@ -1,6 +1,6 @@
[package]
name = "wl-clipboard-rs"
version = "0.8.0" # remember to update html_root_url
version = "0.8.1" # remember to update html_root_url
authors = ["Ivan Molodetskikh <yalterz@gmail.com>"]
description = "Access to the Wayland clipboard for terminal and other window-less applications."
edition = "2021"

View File

@@ -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.0")]
#![doc(html_root_url = "https://docs.rs/wl-clipboard-rs/0.8.1")]
#![deny(unsafe_code)]
mod common;

View File

@@ -1,6 +1,6 @@
[package]
name = "wl-clipboard-rs-tools"
version = "0.8.0"
version = "0.8.1"
authors = ["Ivan Molodetskikh <yalterz@gmail.com>"]
description = "Terminal utilities for accessing the Wayland clipboard."
edition = "2021"
@@ -13,7 +13,7 @@ keywords = ["wayland", "clipboard"]
categories = ["command-line-utilities"]
[dependencies]
wl-clipboard-rs = { path = "../", version = "0.8.0" }
wl-clipboard-rs = { path = "../", version = "0.8.1" }
anyhow = "1.0.80"
libc = "0.2.153"
log = "0.4.21"