diff --git a/CHANGELOG.md b/CHANGELOG.md index e6503db..61335d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.10.2 + +### Fixed +- `x11-clipboard` was bumped t0 `0.9.2` + ## 0.10.1 ### Packaging diff --git a/Cargo.toml b/Cargo.toml index 8fd9e79..26ec603 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "copypasta" -version = "0.10.1" +version = "0.10.2" authors = ["Christian Duerr "] description = "copypasta is a cross-platform library for getting and setting the contents of the OS-level clipboard." repository = "https://github.com/alacritty/copypasta" @@ -26,5 +26,5 @@ objc_id = "0.1" objc-foundation = "0.1" [target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="ios", target_os="emscripten"))))'.dependencies] -x11-clipboard = { version = "0.9.1", optional = true } +x11-clipboard = { version = "0.9.2", optional = true } smithay-clipboard = { version = "0.7.0", optional = true }