Update Minor Version to v2.4 in main (#4086)

This commit is contained in:
Nick Banks 2024-01-26 17:46:57 -05:00 коммит произвёл GitHub
Родитель 462728ce70
Коммит 7c5eba61df
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
8 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -95,7 +95,7 @@ extends:
ob_createvpack_owneralias: quicdev ob_createvpack_owneralias: quicdev
ob_createvpack_description: msquic.$(Build.SourceBranchName) ob_createvpack_description: msquic.$(Build.SourceBranchName)
ob_createvpack_versionAs: string ob_createvpack_versionAs: string
ob_createvpack_version: 2.3.0-$(Build.BuildId) ob_createvpack_version: 2.4.0-$(Build.BuildId)
steps: steps:
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
inputs: inputs:

Просмотреть файл

@ -56,7 +56,7 @@ message(STATUS "Platform version: ${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}")
message(STATUS "Build type: ${CMAKE_BUILD_TYPE}") message(STATUS "Build type: ${CMAKE_BUILD_TYPE}")
set(QUIC_MAJOR_VERSION 2) set(QUIC_MAJOR_VERSION 2)
set(QUIC_FULL_VERSION 2.3.0) set(QUIC_FULL_VERSION 2.4.0)
if (WIN32) if (WIN32)
set(CX_PLATFORM "windows") set(CX_PLATFORM "windows")

Просмотреть файл

@ -1,6 +1,6 @@
[package] [package]
name = "msquic" name = "msquic"
version = "2.3.0-beta" version = "2.4.0-beta"
edition = "2018" edition = "2018"
authors = ["Microsoft"] authors = ["Microsoft"]
description = "Microsoft implementation of the IETF QUIC protocol" description = "Microsoft implementation of the IETF QUIC protocol"

Просмотреть файл

@ -19,7 +19,7 @@ $ArtifactsBinDir = Join-Path $BaseArtifactsDir "bin"
# All direct subfolders are OS's # All direct subfolders are OS's
$Platforms = Get-ChildItem -Path $ArtifactsBinDir $Platforms = Get-ChildItem -Path $ArtifactsBinDir
$Version = "2.3.0" $Version = "2.4.0"
$WindowsBuilds = @() $WindowsBuilds = @()
$AllBuilds = @() $AllBuilds = @()

Просмотреть файл

@ -153,7 +153,7 @@ $DistDir = Join-Path $BaseArtifactsDir "dist"
$CurrentCommitHash = Get-GitHash -RepoDir $RootDir $CurrentCommitHash = Get-GitHash -RepoDir $RootDir
$RepoRemote = Get-GitRemote -RepoDir $RootDir $RepoRemote = Get-GitRemote -RepoDir $RootDir
$Version = "2.3.0" $Version = "2.4.0"
$BuildId = $env:BUILD_BUILDID $BuildId = $env:BUILD_BUILDID
if ($null -ne $BuildId) { if ($null -ne $BuildId) {

Просмотреть файл

@ -26,7 +26,7 @@ $ArtifactsDir = $BuildConfig.ArtifactsDir
$SourceVersion = $env:BUILD_SOURCEVERSION; $SourceVersion = $env:BUILD_SOURCEVERSION;
$SourceBranch = $env:BUILD_SOURCEBRANCH; $SourceBranch = $env:BUILD_SOURCEBRANCH;
$BuildId = $env:BUILD_BUILDID; $BuildId = $env:BUILD_BUILDID;
$VersionNumber = "2.3.0"; $VersionNumber = "2.4.0";
class BuildData { class BuildData {
[string]$SourceVersion; [string]$SourceVersion;

Просмотреть файл

@ -19,7 +19,7 @@
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>2.3.0</string> <string>2.4.0</string>
<key>NSHumanReadableCopyright</key> <key>NSHumanReadableCopyright</key>
<string>MIT</string> <string>MIT</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>

Просмотреть файл

@ -8,7 +8,7 @@
#endif #endif
#ifndef VER_MINOR #ifndef VER_MINOR
#define VER_MINOR 3 #define VER_MINOR 4
#endif #endif
#ifndef VER_PATCH #ifndef VER_PATCH