Skip to content

Commit

Permalink
FileSystemDsc: Fix GitVersion (#14)
Browse files Browse the repository at this point in the history
- FileSystemDsc
  - The component `gitversion` that is used in the pipeline was wrongly configured
    when the repository moved to the new default branch `main`. It no longer throws
    an error when using newer versions of GitVersion.
  • Loading branch information
johlju authored Jan 23, 2021
1 parent a95d107 commit cc78d43
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
or `features`.
- Added missing MIT LICENSE file.

### Fixed

- FileSystemDsc
- The component `gitversion` that is used in the pipeline was wrongly configured
when the repository moved to the new default branch `main`. It no longer throws
an error when using newer versions of GitVersion.

## [1.1.1] - 2020-04-19

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ branches:
tag: useBranchName
increment: Minor
regex: f(eature(s)?)?[\/-]
source-branches: ['main']
source-branches: ['master']
hotfix:
tag: fix
increment: Patch
regex: (hot)?fix(es)?[\/-]
source-branches: ['main']
source-branches: ['master']

ignore:
sha: []
Expand Down

0 comments on commit cc78d43

Please sign in to comment.