Skip to content

Commit

Permalink
chore(v0.7.2): update Cargo.toml & CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfertel committed Jun 10, 2024
1 parent 1184daa commit 296c8bb
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 24 deletions.
38 changes: 27 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
authors = ["Alexander Gonzalez <[email protected]>"]
version = "0.7.1"
version = "0.7.2"
name = "bulloak"
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
23 changes: 12 additions & 11 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 296c8bb

Please sign in to comment.