diff --git a/.azure/azure-pipelines.qns.yml b/.azure/azure-pipelines.qns.yml index 95857fe58d..994780a00e 100644 --- a/.azure/azure-pipelines.qns.yml +++ b/.azure/azure-pipelines.qns.yml @@ -60,7 +60,7 @@ jobs: ${{ if eq(variables['Build.Reason'], 'BatchedCI') }}: tags: | latest - v2.0.5.$(Build.BuildId) + v2.0.6.$(Build.BuildId) ${{ if ne(variables['Build.Reason'], 'BatchedCI') }}: tags: custom-$(Build.BuildId) - template: .\templates\run-qns.yml diff --git a/.azure/obtemplates/push-vpack.yml b/.azure/obtemplates/push-vpack.yml index 6dc51fd8e9..83931fc98f 100644 --- a/.azure/obtemplates/push-vpack.yml +++ b/.azure/obtemplates/push-vpack.yml @@ -29,7 +29,7 @@ jobs: vpackToken: $(VPACK_PAT) majorVer: 2 minorVer: 0 - patchVer: 5 + patchVer: 6 prereleaseVer: $(Build.BuildId) - publish: $(XES_VPACKMANIFESTDIRECTORY) diff --git a/.azure/templates/test-distribution.yml b/.azure/templates/test-distribution.yml index ae82762a73..6866ef56d1 100644 --- a/.azure/templates/test-distribution.yml +++ b/.azure/templates/test-distribution.yml @@ -26,7 +26,7 @@ jobs: sudo apt-add-repository ppa:lttng/stable-2.12 sudo apt-get update sudo apt-get install -y lttng-tools - sudo dpkg -i $(Build.SourcesDirectory)/distribution/libmsquic_2.0.5_amd64.deb + sudo dpkg -i $(Build.SourcesDirectory)/distribution/libmsquic_2.0.6_amd64.deb - pwsh: | chmod +x $(Build.SourcesDirectory)/artifacts/bin/linux/x64_Release_openssl/msquictest $(Build.SourcesDirectory)/artifacts/bin/linux/x64_Release_openssl/msquictest --gtest_filter=ParameterValidation.ValidateApi diff --git a/CMakeLists.txt b/CMakeLists.txt index f9a6eeb75e..502bc125a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,7 +55,7 @@ message(STATUS "Platform version: ${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}") message(STATUS "Build type: ${CMAKE_BUILD_TYPE}") set(QUIC_MAJOR_VERSION 2) -set(QUIC_FULL_VERSION 2.0.5) +set(QUIC_FULL_VERSION 2.0.6) if (WIN32) set(CX_PLATFORM "windows") diff --git a/Cargo.toml b/Cargo.toml index a548c37333..6fb521938c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "msquic" -version = "2.0.5-beta" +version = "2.0.6-beta" edition = "2018" authors = ["Microsoft"] description = "Microsoft implementation of the IETF QUIC protocol" diff --git a/scripts/package-distribution.ps1 b/scripts/package-distribution.ps1 index 18077533be..6d3cede0f7 100644 --- a/scripts/package-distribution.ps1 +++ b/scripts/package-distribution.ps1 @@ -19,7 +19,7 @@ $ArtifactsBinDir = Join-Path $BaseArtifactsDir "bin" # All direct subfolders are OS's $Platforms = Get-ChildItem -Path $ArtifactsBinDir -$Version = "2.0.5" +$Version = "2.0.6" $WindowsBuilds = @() $AllBuilds = @() diff --git a/scripts/package-nuget.ps1 b/scripts/package-nuget.ps1 index fba673a4d7..c516a951fb 100644 --- a/scripts/package-nuget.ps1 +++ b/scripts/package-nuget.ps1 @@ -141,7 +141,7 @@ $DistDir = Join-Path $BaseArtifactsDir "dist" $CurrentCommitHash = Get-GitHash -RepoDir $RootDir $RepoRemote = Get-GitRemote -RepoDir $RootDir -$Version = "2.0.5" +$Version = "2.0.6" $BuildId = $env:BUILD_BUILDID if ($null -ne $BuildId) { diff --git a/scripts/write-versions.ps1 b/scripts/write-versions.ps1 index 7512bc94b2..e8ac4bd382 100644 --- a/scripts/write-versions.ps1 +++ b/scripts/write-versions.ps1 @@ -26,7 +26,7 @@ $ArtifactsDir = $BuildConfig.ArtifactsDir $SourceVersion = $env:BUILD_SOURCEVERSION; $SourceBranch = $env:BUILD_SOURCEBRANCH; $BuildId = $env:BUILD_BUILDID; -$VersionNumber = "2.0.5"; +$VersionNumber = "2.0.6"; class BuildData { [string]$SourceVersion; diff --git a/src/distribution/Info.plist b/src/distribution/Info.plist index 6e1636db25..f678491c34 100644 --- a/src/distribution/Info.plist +++ b/src/distribution/Info.plist @@ -19,7 +19,7 @@ CFBundleInfoDictionaryVersion 6.0 CFBundleVersion - 2.0.5 + 2.0.6 NSHumanReadableCopyright MIT CFBundleGetInfoString diff --git a/src/inc/msquic.ver b/src/inc/msquic.ver index 3f351a5352..c0b1ede633 100644 --- a/src/inc/msquic.ver +++ b/src/inc/msquic.ver @@ -12,7 +12,7 @@ #endif #ifndef VER_PATCH -#define VER_PATCH 5 +#define VER_PATCH 6 #endif #ifndef VER_BUILD_ID