Skip to content

Commit

Permalink
Bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YaLTeR committed Jun 19, 2024
1 parent 5b068af commit 61d7b10
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
edition = "2021"
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion wl-clipboard-rs-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 61d7b10

Please sign in to comment.