Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
vkhorikov committed Feb 15, 2021
1 parent f256383 commit eae2ca3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stages:
steps:
- powershell: |
$newVersion = Get-Content "$(Build.SourcesDirectory)/$(versionFileName)" -First 1
$releaseInfo = (Get-Content "$(Build.SourcesDirectory)/$(versionFileName)" | Select-Object -Skip 1)
$releaseInfo = (Get-Content "$(Build.SourcesDirectory)/$(versionFileName)" | Select-Object -Skip 1).Replace('\r\n', '\n')
echo "##vso[task.setvariable variable=newVersion;isOutput=true]$($newVersion)"
echo "##vso[task.setvariable variable=releaseInfo;isOutput=true]$($releaseInfo)"
name: readNewVersionStep
Expand Down Expand Up @@ -78,6 +78,7 @@ stages:
- script: |
echo $(newVersion)
echo $(currentVersion)
echo $(releaseInfo)
displayName: Echo versions
- download: current
Expand Down
6 changes: 3 additions & 3 deletions version.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
2.14.2
2.14.3
New features:
* None
* 258 Enhance overloads for Match

Fixed issues:
* #260 Ensure with errorPredicate checks initial result state
* None

0 comments on commit eae2ca3

Please sign in to comment.