diff --git a/CHANGELOG.md b/CHANGELOG.md index da765d5..953b41c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.20](https://github.com/cargo-bins/reflink-copy/compare/v0.1.19...v0.1.20) - 2024-11-10 + +### Other + +- Implement check_reflink_support for windows ([#83](https://github.com/cargo-bins/reflink-copy/pull/83)) +- Fail reflink_or_copy if target file already exist ([#81](https://github.com/cargo-bins/reflink-copy/pull/81)) +- Bump tempfile from 3.8.0 to 3.12.0 ([#77](https://github.com/cargo-bins/reflink-copy/pull/77)) + ## [0.1.19](https://github.com/cargo-bins/reflink-copy/compare/v0.1.18...v0.1.19) - 2024-07-04 ### Other diff --git a/Cargo.lock b/Cargo.lock index 5a9e6f8..a09c17f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "reflink-copy" -version = "0.1.19" +version = "0.1.20" dependencies = [ "cfg-if", "regex", diff --git a/Cargo.toml b/Cargo.toml index 211a7a9..7beae89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reflink-copy" -version = "0.1.19" +version = "0.1.20" authors = ["Jiahao XU "] edition = "2018" description = "copy-on-write mechanism on supported file systems"