diff --git a/CHANGELOG.md b/CHANGELOG.md index 789dedf4c..e8d6f2984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md) ### Fixed +- ActiveDirectoryDsc + - The regular expression for `minor-version-bump-message` in the file + `GitVersion.yml` was changed to only raise minor version when the + commit message contain the word `add`, `adds`, `minor`, `feature`, + or `features`. - ADDomain - Added additional Get-ADDomain retry exceptions ([issue #581](https://github.com/dsccommunity/ActiveDirectoryDsc/issues/581)). diff --git a/GitVersion.yml b/GitVersion.yml index 044aebb2d..4d5e366fb 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,7 +1,7 @@ mode: ContinuousDelivery next-version: 5.0.0 major-version-bump-message: '\s?(breaking|major|breaking\schange)' -minor-version-bump-message: '\s?(add|feature|minor)' +minor-version-bump-message: '(adds?|features?|minor)\b' patch-version-bump-message: '\s?(fix|patch)' no-bump-message: '\+semver:\s?(none|skip)' assembly-informational-format: '{NuGetVersionV2}+Sha.{Sha}.Date.{CommitDate}'