Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 5b1c159

Browse files
Jinming-Huvinjiang
authored andcommitted
Release 7.5.0
1 parent 236ceb6 commit 5b1c159

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

Changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Azure Storage Client Library for C++
22
History of Changes
33

4+
Changes in v7.5.0
5+
- New feature: Blob Versioning.
6+
- New feature: Jumbo Put Block.
7+
- New feature: Jumbo Put Blob.
8+
- Service version upgraded to 2019-12-12.
9+
410
Changes in v7.4.0
511
- New feature: Premium File Share Properties.
612
- Fixed a bug: crash in table batch operation.

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Microsoft Azure Storage Client Library for C++"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 7.4.0
41+
PROJECT_NUMBER = 7.5.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

Microsoft.WindowsAzure.Storage/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ set(AZURESTORAGE_LIBRARIES ${AZURESTORAGE_LIBRARY} ${CASABLANCA_LIBRARY} ${Boost
150150

151151
# Set version numbers centralized
152152
set (AZURESTORAGE_VERSION_MAJOR 7)
153-
set (AZURESTORAGE_VERSION_MINOR 4)
153+
set (AZURESTORAGE_VERSION_MINOR 5)
154154
set (AZURESTORAGE_VERSION_REVISION 0)
155155

156156
# Set output directories.

Microsoft.WindowsAzure.Storage/includes/wascore/constants.dat

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -416,21 +416,21 @@ DAT(xml_user_delegation_key_expiry, _XPLATSTR("Expiry"))
416416
DAT(json_file_permission, _XPLATSTR("permission"))
417417

418418
#define STR(x) #x
419-
#define VER(x) _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows; MSC_VER " STR(x) ")")
419+
#define VER(x) _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows; MSC_VER " STR(x) ")")
420420
#if defined(_WIN32)
421421
#if defined(_MSC_VER)
422422
#if _MSC_VER >= 1900
423423
DAT(header_value_user_agent, VER(_MSC_VER))
424424
#elif _MSC_VER >= 1800
425-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows; MSC_VER 18XX)"))
425+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows; MSC_VER 18XX)"))
426426
#else
427-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows; MSC_VER < 1800)"))
427+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows; MSC_VER < 1800)"))
428428
#endif
429429
#else
430-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native; Windows)"))
430+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native; Windows)"))
431431
#endif
432432
#else
433-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.4.0 (Native)"))
433+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.5.0 (Native)"))
434434
#endif
435435

436436
#endif // _CONSTANTS
0 Bytes
Binary file not shown.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Azure Storage Client Library for C++ (7.4.0)
1+
# Azure Storage Client Library for C++ (7.5.0)
22

33
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).
44

@@ -131,6 +131,7 @@ The validated Casablanca version for each major or recent release on different p
131131
| 7.3.0 | 2.10.15 | 2.10.15 |
132132
| 7.3.1 | 2.10.15 | 2.10.15 |
133133
| 7.4.0 | 2.10.16 | 2.10.16 |
134+
| 7.5.0 | 2.10.16 | 2.10.16 |
134135

135136
## Code Samples
136137

0 commit comments

Comments
 (0)