Skip to content

Commit

Permalink
Fix regular expression for bumping version (issue dsccommunity#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Apr 9, 2020
1 parent 6199687 commit 6a58638
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -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}'
Expand Down

0 comments on commit 6a58638

Please sign in to comment.