diff --git a/CHANGELOG.md b/CHANGELOG.md index e0235bc..8d0560c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [0.1.3] - 2024-11-27 + +### ๐Ÿš€ Features + +- Add `ConanInstall::build_profile()` method + +### ๐Ÿšœ Refactor + +- Show better errors for `conan profile detect` + +### ๐Ÿ“š Documentation + +- Add examples for `ConanInstall::build_profile()` + +### ๐Ÿงช Testing + +- Add integration tests for `build_profile()` + ## [0.1.2] - 2024-08-28 ### ๐Ÿš€ Features diff --git a/cliff.toml b/cliff.toml index 39a3045..4610b08 100644 --- a/cliff.toml +++ b/cliff.toml @@ -63,13 +63,14 @@ commit_parsers = [ { message = "^refactor", group = "๐Ÿšœ Refactor" }, { message = "^style", group = "๐ŸŽจ Styling" }, { message = "^test", group = "๐Ÿงช Testing" }, + { message = "^build", group = "๐Ÿ› ๏ธ Build" }, { message = "^chore\\(release\\): prepare for", skip = true }, { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, - { message = "^chore|^ci", group = "โš™๏ธ Miscellaneous Tasks" }, - { body = ".*security", group = "๐Ÿ›ก๏ธ Security" }, - { message = "^revert", group = "โ—€๏ธ Revert" }, + { message = "^chore|^ci", group = "โš™๏ธ Miscellaneous Tasks" }, + { body = ".*security", group = "๐Ÿ›ก๏ธ Security" }, + { message = "^revert", group = "โ—€๏ธ Revert" }, ] # filter out the commits that are not matched by commit parsers filter_commits = false