From 44d1a2957629835361b95b66c09dd6dbd0d28096 Mon Sep 17 00:00:00 2001 From: ComplexSpaces Date: Mon, 28 Aug 2023 10:42:18 -0500 Subject: [PATCH] Release 3.2.1 --- CHANGELOG.md | 14 +++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01cd2de..ac55179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog -## 3.2.0 +## 3.2.1 on 2023-28-11 + +### Fixed +- Removed all leaks from the macOS clipboard code. Previously, both the `get` and `set` methods leaked data. +- Fixed documentation examples so that they compile on Linux. +- Removed extra whitespace macOS's HTML copying template. This caused unexpected behavior in some apps. + +### Changed +- Added a timeout when connecting to the X11 server on UNIX platforms. In situations where the X11 socket is present but unusable, the clipboard + initialization will no longer hang indefinitely. +- Removed macOS-specific dependency on the `once_cell` crate. + +## 3.2.0 on 2022-04-11 ### Changed - The Windows clipboard now behaves consistently with the other diff --git a/Cargo.lock b/Cargo.lock index 9568090..982ab00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "arboard" -version = "3.2.0" +version = "3.2.1" dependencies = [ "clipboard-win", "core-graphics", diff --git a/Cargo.toml b/Cargo.toml index df0a2c1..567a5d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arboard" -version = "3.2.0" +version = "3.2.1" authors = ["Artur Kovacs ", "Avi Weinstock ", "Arboard contributors"] description = "Image and text handling for the OS clipboard." repository = "https://github.com/1Password/arboard"