Skip to content

Commit

Permalink
Update Patch Version (#2020)
Browse files Browse the repository at this point in the history
  • Loading branch information
nibanks authored Sep 22, 2021
1 parent 92c8d08 commit ac909b9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .azure/azure-pipelines.qns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
${{ if eq(variables['Build.Reason'], 'BatchedCI') }}:
tags: |
latest
v1.1.7.$(Build.BuildId)
v1.1.8.$(Build.BuildId)
${{ if ne(variables['Build.Reason'], 'BatchedCI') }}:
tags: custom-$(Build.BuildId)
- template: .\templates\run-qns.yml
Expand Down
2 changes: 1 addition & 1 deletion .azure/templates/create-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ jobs:
vpackToken: $(VPACK_PAT)
majorVer: 1
minorVer: 1
patchVer: 7
patchVer: 8
prereleaseVer: $(Build.BuildId)
2 changes: 1 addition & 1 deletion scripts/package-distribution.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ foreach ($Build in $AllBuilds) {
if ($Platform -eq "windows" -or $Platform -eq "uwp") {
$Headers += Join-Path $HeaderDir "msquic_winuser.h"
} else {
$Headers += Join-Path $HeaderDir "msquic_posix.h"
$Headers += Join-Path $HeaderDir "msquic_linux.h"
$Headers += Join-Path $HeaderDir "quic_sal_stub.h"
}

Expand Down
6 changes: 3 additions & 3 deletions src/inc/msquic.ver
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
#define VER_LEGALCOPYRIGHT_STR "\251 Microsoft Corporation."
#define VER_PRODUCTNAME_STR "Microsoft\256 QUIC"

#define VER_FILEVERSION 1,1,7,0
#define VER_FILEVERSION_STR "1.1.7.0\0"
#define VER_FILEVERSION 1,1,8,0
#define VER_FILEVERSION_STR "1.1.8.0\0"

#define VER_PRODUCTVERSION_STR "1.1.7." STR(VER_BUILD_ID) STR(VER_SUFFIX) "\0"
#define VER_PRODUCTVERSION_STR "1.1.8." STR(VER_BUILD_ID) STR(VER_SUFFIX) "\0"

VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand Down

0 comments on commit ac909b9

Please sign in to comment.