diff --git a/CHANGELOG.md b/CHANGELOG.md index 18ac3e8..730272b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,33 @@ All notable changes to this project will be documented in this file. -## [0.7.1] +## [0.7.2] - 2024-06-10 + +### Bug Fixes + +- Add email to Cargo.toml + + +### Features + +- Add --skip-modifiers flag (#68) + + +### Miscellaneous Tasks + +- Update lock file +- Add FUNDING.json + + +### Refactor + +- *(check)* Simplify function insertion procedures +- *(hir)* Simplify imports +- Improve readability of find_contract +- Rework crate to support configuration (#67) + + +## [0.7.1] - 2024-04-19 ### Bug Fixes @@ -34,11 +60,6 @@ All notable changes to this project will be documented in this file. - *(ci)* Fix coverage workflow -### Lint - -- Fix fmt - - ## [0.7.0] - 2024-02-25 ### Bug Fixes @@ -57,11 +78,6 @@ All notable changes to this project will be documented in this file. - Add support for multiple trees per file (#51) -### Lint - -- Fix addressable clippy warnings - - ## [0.6.5] - 2024-02-17 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index f5c8244..ecd712f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -330,7 +330,7 @@ checksum = "b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7" [[package]] name = "bulloak" -version = "0.7.1" +version = "0.7.2" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index dfc2433..eb2b98f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] authors = ["Alexander Gonzalez "] -version = "0.7.1" +version = "0.7.2" name = "bulloak" license = "MIT OR Apache-2.0" edition = "2021" diff --git a/cliff.toml b/cliff.toml index b4409c1..6723fa3 100644 --- a/cliff.toml +++ b/cliff.toml @@ -47,17 +47,18 @@ filter_unconventional = true split_commits = false # regex for parsing and grouping commits commit_parsers = [ - { message = "^feat", group = "Features"}, - { message = "^fix", group = "Bug Fixes"}, - { message = "^doc", group = "Documentation"}, - { message = "^perf", group = "Performance"}, - { message = "^ref", group = "Refactor"}, - { message = "^style", skip = true}, - { message = "^test", skip = true}, - { message = "^chore\\(release\\):", skip = true}, - { message = "^chore\\(v[0-9]*\\.[0-9]*\\.[0-9]*\\):", skip = true}, - { message = "^chore", group = "Miscellaneous Tasks"}, - { body = ".*security", group = "Security"}, + { message = "^feat", group = "Features" }, + { message = "^fix", group = "Bug Fixes" }, + { message = "^doc", group = "Documentation" }, + { message = "^perf", group = "Performance" }, + { message = "^ref", group = "Refactor" }, + { message = "^style", skip = true }, + { message = "^test", skip = true }, + { message = "^chore\\(release\\):", skip = true }, + { message = "^chore\\(v[0-9]*\\.[0-9]*\\.[0-9]*\\):", skip = true }, + { message = "^chore", group = "Miscellaneous Tasks" }, + { message = "^lint", skip = true }, + { body = ".*security", group = "Security" }, ] # protect breaking changes from being skipped due to matching a skipping commit_parser protect_breaking_commits = false