Skip to content

Commit 9387803

Browse files
authored
Update Release Patch Version to 2.3.6 (#4402)
1 parent 0d7f76a commit 9387803

8 files changed

+8
-8
lines changed

.azure/OneBranch.Package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ extends:
9595
ob_createvpack_owneralias: quicdev
9696
ob_createvpack_description: msquic.$(Build.SourceBranchName)
9797
ob_createvpack_versionAs: string
98-
ob_createvpack_version: 2.3.5-$(Build.BuildId)
98+
ob_createvpack_version: 2.3.6-$(Build.BuildId)
9999
steps:
100100
- task: DownloadPipelineArtifact@2
101101
inputs:

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ message(STATUS "Platform version: ${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}")
5656
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
5757

5858
set(QUIC_MAJOR_VERSION 2)
59-
set(QUIC_FULL_VERSION 2.3.5)
59+
set(QUIC_FULL_VERSION 2.3.6)
6060

6161
if (WIN32)
6262
set(CX_PLATFORM "windows")

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "msquic"
3-
version = "2.3.5-beta"
3+
version = "2.3.6-beta"
44
edition = "2018"
55
authors = ["Microsoft"]
66
description = "Microsoft implementation of the IETF QUIC protocol"

scripts/package-distribution.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $ArtifactsBinDir = Join-Path $BaseArtifactsDir "bin"
1919
# All direct subfolders are OS's
2020
$Platforms = Get-ChildItem -Path $ArtifactsBinDir
2121

22-
$Version = "2.3.5"
22+
$Version = "2.3.6"
2323

2424
$WindowsBuilds = @()
2525
$AllBuilds = @()

scripts/package-nuget.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ $DistDir = Join-Path $BaseArtifactsDir "dist"
153153
$CurrentCommitHash = Get-GitHash -RepoDir $RootDir
154154
$RepoRemote = Get-GitRemote -RepoDir $RootDir
155155

156-
$Version = "2.3.5"
156+
$Version = "2.3.6"
157157

158158
$BuildId = $env:BUILD_BUILDID
159159
if ($null -ne $BuildId) {

scripts/write-versions.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $ArtifactsDir = $BuildConfig.ArtifactsDir
2626
$SourceVersion = $env:BUILD_SOURCEVERSION;
2727
$SourceBranch = $env:BUILD_SOURCEBRANCH;
2828
$BuildId = $env:BUILD_BUILDID;
29-
$VersionNumber = "2.3.5";
29+
$VersionNumber = "2.3.6";
3030

3131
class BuildData {
3232
[string]$SourceVersion;

src/distribution/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleInfoDictionaryVersion</key>
2020
<string>6.0</string>
2121
<key>CFBundleVersion</key>
22-
<string>2.3.5</string>
22+
<string>2.3.6</string>
2323
<key>NSHumanReadableCopyright</key>
2424
<string>MIT</string>
2525
<key>CFBundleGetInfoString</key>

src/inc/msquic.ver

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#endif
1313

1414
#ifndef VER_PATCH
15-
#define VER_PATCH 5
15+
#define VER_PATCH 6
1616
#endif
1717

1818
#ifndef VER_BUILD_ID

0 commit comments

Comments
 (0)