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

Commit bf0add5

Browse files
Jinming-Huvinjiang
authored andcommitted
Release 7.3.1
1 parent c1fdf3a commit bf0add5

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

Changelog.txt

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

4+
Changes in v7.3.1
5+
- Fixed a bug: RangeNotSatisfiable exception is mistakenly swallowed.
6+
- Fixed a bug: File length is not returned when listing files.
7+
48
Changes in v7.3.0
59
- New feature: Customer provided key (CPK-V)
610
- New feature: File lease

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.3.0
41+
PROJECT_NUMBER = 7.3.1
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
@@ -151,7 +151,7 @@ set(AZURESTORAGE_LIBRARIES ${AZURESTORAGE_LIBRARY} ${CASABLANCA_LIBRARY} ${Boost
151151
# Set version numbers centralized
152152
set (AZURESTORAGE_VERSION_MAJOR 7)
153153
set (AZURESTORAGE_VERSION_MINOR 3)
154-
set (AZURESTORAGE_VERSION_REVISION 0)
154+
set (AZURESTORAGE_VERSION_REVISION 1)
155155

156156
# Set output directories.
157157
if(NOT DEFINED CMAKE_INSTALL_BINDIR)

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

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

405405
#define STR(x) #x
406-
#define VER(x) _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER " STR(x) ")")
406+
#define VER(x) _XPLATSTR("Azure-Storage/7.3.1 (Native; Windows; MSC_VER " STR(x) ")")
407407
#if defined(_WIN32)
408408
#if defined(_MSC_VER)
409409
#if _MSC_VER >= 1900
410410
DAT(header_value_user_agent, VER(_MSC_VER))
411411
#elif _MSC_VER >= 1800
412-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER 18XX)"))
412+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.1 (Native; Windows; MSC_VER 18XX)"))
413413
#else
414-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER < 1800)"))
414+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.1 (Native; Windows; MSC_VER < 1800)"))
415415
#endif
416416
#else
417-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows)"))
417+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.1 (Native; Windows)"))
418418
#endif
419419
#else
420-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native)"))
420+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.1 (Native)"))
421421
#endif
422422

423423
#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.3.0)
1+
# Azure Storage Client Library for C++ (7.3.1)
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](http://azure.microsoft.com/en-us/documentation/articles/storage-introduction/).
44

@@ -129,6 +129,7 @@ The validated Casablanca version for each major or recent release on different p
129129
| 7.1.0 | 2.10.14 | 2.10.14 |
130130
| 7.2.0 | 2.10.14 | 2.10.14 |
131131
| 7.3.0 | 2.10.15 | 2.10.15 |
132+
| 7.3.1 | 2.10.15 | 2.10.15 |
132133

133134
## Code Samples
134135

0 commit comments

Comments
 (0)