Skip to content

Commit

Permalink
chore: fix CHANGELOG parsers for uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Jun 4, 2024
1 parent 9435229 commit 9d5c39f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [sol-macro] Allow deriving `Default` on contracts ([#645](https://github.com/alloy-rs/core/issues/645))
- [sol-macro] Overridden event signatures ([#642](https://github.com/alloy-rs/core/issues/642))
- [primitives] Signed formatting ([#643](https://github.com/alloy-rs/core/issues/643))
- Fix Log serde for non self describing protocols ([#639](https://github.com/alloy-rs/core/issues/639))
- Handle 0 for inverting eip155 parity. ([#633](https://github.com/alloy-rs/core/issues/633))

### Documentation
Expand All @@ -26,13 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- Release 0.7.5
- [sol-macro] Add suggestion to remove name ([#647](https://github.com/alloy-rs/core/issues/647))
- Temporarily disable tests that OOM Miri ([#637](https://github.com/alloy-rs/core/issues/637))

### Styling

- Fix Log serde for non self describing protocols ([#639](https://github.com/alloy-rs/core/issues/639))

## [0.7.4](https://github.com/alloy-rs/core/releases/tag/v0.7.4) - 2024-05-14

### Bug Fixes
Expand Down Expand Up @@ -736,12 +734,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Cache wasm job ([#197](https://github.com/alloy-rs/core/issues/197))
- Significant dyn-abi fixes :) ([#168](https://github.com/alloy-rs/core/issues/168))
- Refactoring `dyn-abi` to performance parity with ethabi ([#144](https://github.com/alloy-rs/core/issues/144))
- Kuly14/cleanup ([#151](https://github.com/alloy-rs/core/issues/151))
- Explain alloy vs ethers-rs intention ([#146](https://github.com/alloy-rs/core/issues/146))

### Refactor

- Refactoring `dyn-abi` to performance parity with ethabi ([#144](https://github.com/alloy-rs/core/issues/144))
- Rename domain macro and add docs ([#147](https://github.com/alloy-rs/core/issues/147))
- Rename Sol*::Tuple to Parameters/Arguments ([#145](https://github.com/alloy-rs/core/issues/145))
- Do not generate SolCall for return values ([#134](https://github.com/alloy-rs/core/issues/134))
Expand Down
16 changes: 8 additions & 8 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ commit_preprocessors = [
{ pattern = '#(\d+)', replace = "[#$1](https://github.com/alloy-rs/core/issues/$1)" },
]
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^doc", group = "Documentation" },
{ message = "^[Ff]eat", group = "Features" },
{ message = "^[Ff]ix", group = "Bug Fixes" },
{ message = "^[Dd]oc", group = "Documentation" },
{ message = ".*\\b([Dd]eps|[Dd]ependencies|[Bb]ump)\\b", group = "Dependencies" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactor" },
{ message = ".*\\b(style|fmt|format)\\b", group = "Styling" },
{ message = "^test", group = "Testing" },
{ message = "^chore", group = "Miscellaneous Tasks" },
{ message = "^[Pp]erf", group = "Performance" },
{ message = "^[Rr]efactor", group = "Refactor" },
{ message = ".*\\b([Ss]tyle|[Ff]mt|[Ff]ormat)\\b", group = "Styling" },
{ message = "^[Tt]est", group = "Testing" },
{ message = "^[Cc]hore", group = "Miscellaneous Tasks" },

{ message = ".*", group = "Other" },
]
Expand Down

0 comments on commit 9d5c39f

Please sign in to comment.