Storage Sept Release (#2836)

This commit is contained in:
JinmingHu 2021-09-08 09:39:24 +08:00 committed by GitHub
parent 6ef0b265e5
commit e6a488193b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 33 additions and 43 deletions

View File

@ -1,8 +1,6 @@
# Release History
## 12.2.0-beta.1 (Unreleased)
### Features Added
## 12.2.0 (2021-09-08)
### Breaking Changes

View File

@ -20,9 +20,9 @@ include(AzureGlobalCompileOptions)
az_vcpkg_integrate()
if(NOT AZ_ALL_LIBRARIES)
find_package(azure-storage-common-cpp "12.1.0" CONFIG QUIET)
find_package(azure-storage-common-cpp "12.2.0" CONFIG QUIET)
if(NOT azure-storage-common-cpp_FOUND)
find_package(azure-storage-common-cpp "12.1.0" REQUIRED)
find_package(azure-storage-common-cpp "12.2.0" REQUIRED)
endif()
endif()

View File

@ -11,7 +11,7 @@
#define AZURE_STORAGE_BLOBS_VERSION_MAJOR 12
#define AZURE_STORAGE_BLOBS_VERSION_MINOR 2
#define AZURE_STORAGE_BLOBS_VERSION_PATCH 0
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "beta.1"
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE ""
#define AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_BLOBS_VERSION_ITOA(i) AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i)

View File

@ -4,7 +4,7 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(azure-storage-common-cpp "12.1.0")
find_dependency(azure-storage-common-cpp "12.2.0")
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-blobs-cppTargets.cmake")

View File

@ -14,7 +14,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.1.0"
"version>=": "12.2.0"
},
{
"name": "vcpkg-cmake",

View File

@ -1,19 +1,15 @@
# Release History
## 12.2.0-beta.1 (Unreleased)
## 12.2.0 (2021-09-08)
### Features Added
- Used new xml library on Windows, dropped dependency for libxml2.
### Breaking Changes
### Bugs Fixed
- Fixed a bug that may cause crash when parsing XML.
### Other Changes
## 12.1.0 (2021-08-10)
### Bugs Fixed

View File

@ -13,7 +13,7 @@
#define AZURE_STORAGE_COMMON_VERSION_MAJOR 12
#define AZURE_STORAGE_COMMON_VERSION_MINOR 2
#define AZURE_STORAGE_COMMON_VERSION_PATCH 0
#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE "beta.1"
#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE ""
#define AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_COMMON_VERSION_ITOA(i) AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i)

View File

@ -1,8 +1,6 @@
# Release History
## 12.2.0-beta.1 (Unreleased)
### Features Added
## 12.2.0 (2021-09-08)
### Breaking Changes

View File

@ -20,9 +20,9 @@ include(AzureGlobalCompileOptions)
az_vcpkg_integrate()
if(NOT AZ_ALL_LIBRARIES)
find_package(azure-storage-blobs-cpp "12.1.0" CONFIG QUIET)
find_package(azure-storage-blobs-cpp "12.2.0" CONFIG QUIET)
if(NOT azure-storage-blobs-cpp_FOUND)
find_package(azure-storage-blobs-cpp "12.1.0" REQUIRED)
find_package(azure-storage-blobs-cpp "12.2.0" REQUIRED)
endif()
endif()

View File

@ -11,7 +11,7 @@
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MAJOR 12
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR 2
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 0
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "beta.1"
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE ""
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_ITOA(i) \

View File

@ -4,7 +4,7 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(azure-storage-blobs-cpp "12.1.0")
find_dependency(azure-storage-blobs-cpp "12.2.0")
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-files-datalake-cppTargets.cmake")

View File

@ -14,7 +14,7 @@
{
"name": "azure-storage-blobs-cpp",
"default-features": false,
"version>=": "12.1.0"
"version>=": "12.2.0"
},
{
"name": "vcpkg-cmake",

View File

@ -1,8 +1,6 @@
# Release History
## 12.2.0-beta.1 (Unreleased)
### Features Added
## 12.2.0 (2021-09-08)
### Breaking Changes

View File

@ -20,9 +20,9 @@ include(AzureGlobalCompileOptions)
az_vcpkg_integrate()
if(NOT AZ_ALL_LIBRARIES)
find_package(azure-storage-common-cpp "12.1.0" CONFIG QUIET)
find_package(azure-storage-common-cpp "12.2.0" CONFIG QUIET)
if(NOT azure-storage-common-cpp_FOUND)
find_package(azure-storage-common-cpp "12.1.0" REQUIRED)
find_package(azure-storage-common-cpp "12.2.0" REQUIRED)
endif()
endif()

View File

@ -11,7 +11,7 @@
#define AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR 12
#define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 2
#define AZURE_STORAGE_FILES_SHARES_VERSION_PATCH 0
#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE "beta.1"
#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE ""
#define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA(i) AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i)

View File

@ -4,7 +4,7 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(azure-storage-common-cpp "12.1.0")
find_dependency(azure-storage-common-cpp "12.2.0")
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-files-shares-cppTargets.cmake")

View File

@ -14,7 +14,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.1.0"
"version>=": "12.2.0"
},
{
"name": "vcpkg-cmake",

View File

@ -1,6 +1,6 @@
# Release History
## 12.0.0-beta.1 (Unreleased)
## 12.0.0-beta.1 (2021-09-08)
### New Features

View File

@ -10,19 +10,19 @@ set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../../cmake-modules")
# include(AzureVcpkg)
include(AzureVcpkg)
include(AzureVersion)
include(AzureCodeCoverage)
include(AzureTransportAdapters)
include(AzureDoxygen)
include(AzureGlobalCompileOptions)
# az_vcpkg_integrate()
az_vcpkg_integrate()
if(NOT AZ_ALL_LIBRARIES)
find_package(azure-storage-common-cpp "12.1.0" CONFIG QUIET)
find_package(azure-storage-common-cpp "12.2.0" CONFIG QUIET)
if(NOT azure-storage-common-cpp_FOUND)
find_package(azure-storage-common-cpp "12.1.0" REQUIRED)
find_package(azure-storage-common-cpp "12.2.0" REQUIRED)
endif()
endif()
@ -66,11 +66,11 @@ target_link_libraries(azure-storage-queues PUBLIC Azure::azure-storage-common)
get_az_version("${CMAKE_CURRENT_SOURCE_DIR}/src/private/package_version.hpp")
generate_documentation(azure-storage-queues ${AZ_LIBRARY_VERSION})
# az_vcpkg_export(
# azure-storage-queues
# STORAGE_QUEUES
# "azure/storage/queues/dll_import_export.hpp"
# )
az_vcpkg_export(
azure-storage-queues
STORAGE_QUEUES
"azure/storage/queues/dll_import_export.hpp"
)
# coverage. Has no effect if BUILD_CODE_COVERAGE is OFF
create_code_coverage(storage azure-storage-queues azure-storage-test)

View File

@ -9,7 +9,7 @@
#pragma once
#define AZURE_STORAGE_QUEUES_VERSION_MAJOR 12
#define AZURE_STORAGE_QUEUES_VERSION_MINOR 1
#define AZURE_STORAGE_QUEUES_VERSION_MINOR 0
#define AZURE_STORAGE_QUEUES_VERSION_PATCH 0
#define AZURE_STORAGE_QUEUES_VERSION_PRERELEASE "beta.1"

View File

@ -4,7 +4,7 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
find_dependency(azure-storage-common-cpp "12.1.0")
find_dependency(azure-storage-common-cpp "12.2.0")
include("${CMAKE_CURRENT_LIST_DIR}/azure-storage-queues-cppTargets.cmake")

View File

@ -14,7 +14,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.1.0"
"version>=": "12.2.0"
},
{
"name": "vcpkg-cmake",