Skip to content

Commit cc78d43

Browse files
authored
FileSystemDsc: Fix GitVersion (#14)
- 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 parent a95d107 commit cc78d43

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222
or `features`.
2323
- Added missing MIT LICENSE file.
2424

25+
### Fixed
26+
27+
- FileSystemDsc
28+
- The component `gitversion` that is used in the pipeline was wrongly configured
29+
when the repository moved to the new default branch `main`. It no longer throws
30+
an error when using newer versions of GitVersion.
31+
2532
## [1.1.1] - 2020-04-19
2633

2734
### Fixed

GitVersion.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ branches:
1515
tag: useBranchName
1616
increment: Minor
1717
regex: f(eature(s)?)?[\/-]
18-
source-branches: ['main']
18+
source-branches: ['master']
1919
hotfix:
2020
tag: fix
2121
increment: Patch
2222
regex: (hot)?fix(es)?[\/-]
23-
source-branches: ['main']
23+
source-branches: ['master']
2424

2525
ignore:
2626
sha: []

0 commit comments

Comments
 (0)