diff --git a/CHANGELOG.md b/CHANGELOG.md index c487bde..5c2160d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.1.4 (2024-03-18) [released] + +- Fix: Fix the bug `fn read_files()` where no files in clipboard. [issues#11](https://github.com/ChurchTao/clipboard-rs/issues/11) + ## v0.1.3 (2024-03-14) [released] - Fix: Fix the bug on `Windows` can't read DIBV5 format image from clipboard [issues#8](https://github.com/ChurchTao/clipboard-rs/issues/8) diff --git a/Cargo.toml b/Cargo.toml index d083df3..545d7f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clipboard-rs" -version = "0.1.3" +version = "0.1.4" authors = ["ChurchTao "] description = "Cross-platform clipboard API (text | image | rich text | html | files | monitoring changes) | 跨平台剪贴板 API(文本|图片|富文本|html|文件|监听变化) Windows,MacOS,Linux" repository = "https://github.com/ChurchTao/clipboard-rs" diff --git a/README.md b/README.md index 2542f07..61c5ff6 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Add the following content to your `Cargo.toml`: ```toml [dependencies] -clipboard-rs = "0.1.3" +clipboard-rs = "0.1.4" ``` ## [CHANGELOG](CHANGELOG.md) diff --git a/README_ZH.md b/README_ZH.md index be33426..61e6c18 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -23,7 +23,7 @@ clipboard-rs 是一个用 Rust 语言编写的跨平台库,用于获取和设 ```toml [dependencies] -clipboard-rs = "0.1.2" +clipboard-rs = "0.1.4" ``` ## [更新日志](CHANGELOG.md)