diff --git a/CHANGELOG.md b/CHANGELOG.md index d70133a..99bb324 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ Notable changes introduced in gimie releases are documented in this file +## [0.7.1] - 2024-12-09 + +### Bug Fixes + +- *(dependency missing)* Added pyyaml (#119) + + +## [0.7.0] - 2024-11-28 + +### Bug Fixes + +- *(cff)* enforce valid urls as doi (#108)- spelling mistake in run as library docs (#113) + + +### Documentation +- update gimie API examples (#105) +- add CFF file (#111) + + +### Features + +- *(parser)* extract authors from CFF files (#115)- add parsers support (#97) +- cff to doi parser (#107) ## [0.6.0] - 2023-10-19 diff --git a/docs/conf.py b/docs/conf.py index 1be4a7b..be9b188 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "gimie" copyright = "2023, sdsc-ordes" author = "sdsc-ordes" -release = "0.6.1" +release = "0.7.1" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 01c6760..bfef38c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -114,7 +114,7 @@ conventional_commits = true filter_commits = true commit_parsers = [ { message = "^feat", group = "Features" }, - { message = "^fix", group = "Bug Fixes" }, + { message = "^(fix|bug)", group = "Bug Fixes" }, { message = "^doc", group = "Documentation" }, ]