This commit is contained in:
Jinming Hu 2020-07-08 10:38:52 +08:00 коммит произвёл Vincent Jiang (LEI)
Родитель 236ceb6877
Коммит 5b1c1597e6
6 изменённых файлов: 15 добавлений и 8 удалений

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

@ -1,6 +1,12 @@
Azure Storage Client Library for C++
History of Changes
Changes in v7.5.0
- New feature: Blob Versioning.
- New feature: Jumbo Put Block.
- New feature: Jumbo Put Blob.
- Service version upgraded to 2019-12-12.
Changes in v7.4.0
- New feature: Premium File Share Properties.
- Fixed a bug: crash in table batch operation.

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

@ -38,7 +38,7 @@ PROJECT_NAME = "Microsoft Azure Storage Client Library for C++"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 7.4.0
PROJECT_NUMBER = 7.5.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

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

@ -150,7 +150,7 @@ set(AZURESTORAGE_LIBRARIES ${AZURESTORAGE_LIBRARY} ${CASABLANCA_LIBRARY} ${Boost
# Set version numbers centralized
set (AZURESTORAGE_VERSION_MAJOR 7)
set (AZURESTORAGE_VERSION_MINOR 4)
set (AZURESTORAGE_VERSION_MINOR 5)
set (AZURESTORAGE_VERSION_REVISION 0)
# Set output directories.

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

@ -416,21 +416,21 @@ DAT(xml_user_delegation_key_expiry, _XPLATSTR("Expiry"))
DAT(json_file_permission, _XPLATSTR("permission"))
#define STR(x) #x
#define VER(x) _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows; MSC_VER " STR(x) ")")
#define VER(x) _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows; MSC_VER " STR(x) ")")
#if defined(_WIN32)
#if defined(_MSC_VER)
#if _MSC_VER >= 1900
DAT(header_value_user_agent, VER(_MSC_VER))
#elif _MSC_VER >= 1800
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows; MSC_VER 18XX)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows; MSC_VER 18XX)"))
#else
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows; MSC_VER < 1800)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows; MSC_VER < 1800)"))
#endif
#else
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows)"))
#endif
#else
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native)"))
#endif
#endif // _CONSTANTS

Двоичные данные
Microsoft.WindowsAzure.Storage/version.rc

Двоичный файл не отображается.

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

@ -1,4 +1,4 @@
# Azure Storage Client Library for C++ (7.4.0)
# Azure Storage Client Library for C++ (7.5.0)
The Azure Storage Client Library for C++ allows you to build applications against Microsoft Azure Storage. For an overview of Azure Storage, see [Introduction to Microsoft Azure Storage](https://docs.microsoft.com/en-us/azure/storage/common/storage-introduction).
@ -131,6 +131,7 @@ The validated Casablanca version for each major or recent release on different p
| 7.3.0 | 2.10.15 | 2.10.15 |
| 7.3.1 | 2.10.15 | 2.10.15 |
| 7.4.0 | 2.10.16 | 2.10.16 |
| 7.5.0 | 2.10.16 | 2.10.16 |
## Code Samples