From 8eb8be56be87bc9feee719ddb6fbe17b32561d34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Gori=C4=8Dar?= Date: Thu, 8 Aug 2024 17:51:15 +0200 Subject: [PATCH] release: release fs-more 0.7.0 --- CHANGELOG.md | 21 ++++++++++++++++--- Cargo.lock | 8 +++---- Cargo.toml | 2 +- README.md | 2 +- .../test-harness-tree-generator/Cargo.toml | 2 +- subcrates/test-harness-tree-schema/Cargo.toml | 2 +- subcrates/test-harness/Cargo.toml | 2 +- 7 files changed, 27 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 807b1c9..418a562 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). - ## [Unreleased] + +--- + + +## [0.7.0] - 2024-08-08 + This is a pretty significant release with a large set of breaking changes (yet again). Alongside several fields, parameters, and types being renamed, there are three important additions and changes to point out: @@ -57,7 +62,7 @@ Alongside several fields, parameters, and types being renamed, there are three i - Removed old directory scanner in favor of the new iterator-based one. ---- + ## [0.6.1] - 2024-07-10 @@ -73,6 +78,7 @@ Alongside several fields, parameters, and types being renamed, there are three i + ## [0.6.0] - 2024-06-16 ### Changed @@ -89,6 +95,7 @@ Alongside several fields, parameters, and types being renamed, there are three i + ## [0.5.1] - 2024-06-15 ### Added @@ -100,6 +107,7 @@ Alongside several fields, parameters, and types being renamed, there are three i + ## [0.5.0] - 2024-06-14 This is a rather big (and breaking) release - a substantial amount of the API surface has been reworked. @@ -171,6 +179,7 @@ This changelog likely doesn't cover all of the changes that the crate got, but h + ## [0.4.0] - 2024-03-13 ### Changed @@ -182,6 +191,8 @@ This changelog likely doesn't cover all of the changes that the crate got, but h - `TargetDirectoryRule` no longer publicly exposes the three methods that previously returned a bool indicating its existing target directory and overwriting behaviour. + + ## [0.3.0] - 2024-01-14 ### Added @@ -190,6 +201,7 @@ This changelog likely doesn't cover all of the changes that the crate got, but h + ## [0.2.2] - 2024-01-13 ### Fixed @@ -197,6 +209,7 @@ This changelog likely doesn't cover all of the changes that the crate got, but h + ## [0.2.1] - 2024-01-13 ### Fixed @@ -204,13 +217,15 @@ This changelog likely doesn't cover all of the changes that the crate got, but h + ## [0.2.0] - 2024-01-13 Initial development release with the API mostly stable. -[Unreleased]: https://github.com/simongoricar/fs-more/compare/v0.6.0...HEAD +[Unreleased]: https://github.com/simongoricar/fs-more/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/simongoricar/fs-more/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/simongoricar/fs-more/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/simongoricar/fs-more/compare/v0.5.1...v0.6.0 [0.5.1]: https://github.com/simongoricar/fs-more/compare/v0.5.0...v0.5.1 diff --git a/Cargo.lock b/Cargo.lock index 9ea2647..c9989ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -217,7 +217,7 @@ dependencies = [ [[package]] name = "fs-more" -version = "0.6.1" +version = "0.7.0" dependencies = [ "dunce", "fs-err", @@ -227,7 +227,7 @@ dependencies = [ [[package]] name = "fs-more-test-harness" -version = "0.6.1" +version = "0.7.0" dependencies = [ "assert_matches", "dunce", @@ -242,7 +242,7 @@ dependencies = [ [[package]] name = "fs-more-test-harness-generator" -version = "0.6.1" +version = "0.7.0" dependencies = [ "clap", "fs-more-test-harness-tree-schema", @@ -263,7 +263,7 @@ dependencies = [ [[package]] name = "fs-more-test-harness-tree-schema" -version = "0.1.0" +version = "0.7.0" dependencies = [ "schemars", "serde", diff --git a/Cargo.toml b/Cargo.toml index 2518993..f18f837 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fs-more" -version = "0.6.1" +version = "0.7.0" rust-version = "1.77.0" authors = [ "Simon Goričar " diff --git a/README.md b/README.md index 99f3001..7c6ab26 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Includes copying and moving files or directories with progress reporting. ## Usage To add `fs-more` into your project, specify it as a dependency in your `Cargo.toml` file: ```toml -fs-more = "0.6.1" +fs-more = "0.7.0" ``` diff --git a/subcrates/test-harness-tree-generator/Cargo.toml b/subcrates/test-harness-tree-generator/Cargo.toml index 86a071f..36e6c17 100644 --- a/subcrates/test-harness-tree-generator/Cargo.toml +++ b/subcrates/test-harness-tree-generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fs-more-test-harness-generator" -version = "0.6.1" +version = "0.7.0" edition = "2021" publish = false diff --git a/subcrates/test-harness-tree-schema/Cargo.toml b/subcrates/test-harness-tree-schema/Cargo.toml index 0349c31..07de223 100644 --- a/subcrates/test-harness-tree-schema/Cargo.toml +++ b/subcrates/test-harness-tree-schema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fs-more-test-harness-tree-schema" -version = "0.1.0" +version = "0.7.0" edition = "2021" publish = false diff --git a/subcrates/test-harness/Cargo.toml b/subcrates/test-harness/Cargo.toml index b6eb985..f35fb4d 100644 --- a/subcrates/test-harness/Cargo.toml +++ b/subcrates/test-harness/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fs-more-test-harness" -version = "0.6.1" +version = "0.7.0" edition = "2021" publish = false