Skip to content

Commit ca39850

Browse files
authored
Fix the QUIC_HANDSHAKE_INFO Test to Allow for Future Versions to Grow Size (#5032) (#5036)
1 parent aee1bc7 commit ca39850

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.azure/OneBranch.Package.yml

Lines changed: 1 addition & 1 deletion
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.9-$(Build.BuildId)
98+
ob_createvpack_version: 2.3.10-$(Build.BuildId)
9999
steps:
100100
- task: DownloadPipelineArtifact@2
101101
inputs:

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ message(STATUS "Platform version: ${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}")
5757
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
5858

5959
set(QUIC_MAJOR_VERSION 2)
60-
set(QUIC_FULL_VERSION 2.3.9)
60+
set(QUIC_FULL_VERSION 2.3.10)
6161

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "msquic"
3-
version = "2.3.9-beta"
3+
version = "2.3.10-beta"
44
edition = "2018"
55
authors = ["Microsoft"]
66
description = "Microsoft implementation of the IETF QUIC protocol"

scripts/package-distribution.ps1

Lines changed: 1 addition & 1 deletion
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.9"
22+
$Version = "2.3.10"
2323

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

scripts/package-nuget.ps1

Lines changed: 1 addition & 1 deletion
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.9"
156+
$Version = "2.3.10"
157157

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

scripts/write-versions.ps1

Lines changed: 1 addition & 1 deletion
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.9";
29+
$VersionNumber = "2.3.10";
3030

3131
class BuildData {
3232
[string]$SourceVersion;

src/distribution/Info.plist

Lines changed: 1 addition & 1 deletion
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.9</string>
22+
<string>2.3.10</string>
2323
<key>NSHumanReadableCopyright</key>
2424
<string>MIT</string>
2525
<key>CFBundleGetInfoString</key>

src/inc/msquic.ver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#endif
1313

1414
#ifndef VER_PATCH
15-
#define VER_PATCH 9
15+
#define VER_PATCH 10
1616
#endif
1717

1818
#ifndef VER_BUILD_ID

src/test/lib/ApiTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4544,7 +4544,7 @@ void QuicTestTlsParam()
45444544
QUIC_PARAM_TLS_HANDSHAKE_INFO,
45454545
&Length,
45464546
nullptr));
4547-
TEST_EQUAL(Length, sizeof(QUIC_HANDSHAKE_INFO));
4547+
TEST_TRUE(Length >= sizeof(QUIC_HANDSHAKE_INFO));
45484548

45494549
//
45504550
// Before handshake

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "major": 2, "minor": 3, "patch": 9 }
1+
{ "major": 2, "minor": 3, "patch": 10 }

0 commit comments

Comments
 (0)