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

Commit ebe0945

Browse files
committed
Release 7.1.0
1 parent ba05f42 commit ebe0945

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

Changelog.txt

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

4+
Changes in v7.1.0
5+
- New feature: User delegation SAS.
6+
- Fixed a bug in snapshot SAS.
7+
- Fixed some unittest failures.
8+
- Fixed some crash issues.
9+
- Added an API with which user can custom HTTP connection settings.
10+
411
Changes in v7.0.0
512
- Default REST API version is 2019-02-02.
613
- Upgraded CPPRest to latest version 2.10.14.

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.0.0
41+
PROJECT_NUMBER = 7.1.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 0)
153+
set (AZURESTORAGE_VERSION_MINOR 1)
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
@@ -398,21 +398,21 @@ DAT(xml_user_delegation_key_expiry, _XPLATSTR("Expiry"))
398398
DAT(json_file_permission, _XPLATSTR("permission"))
399399

400400
#define STR(x) #x
401-
#define VER(x) _XPLATSTR("Azure-Storage/7.0.0 (Native; Windows; MSC_VER " STR(x) ")")
401+
#define VER(x) _XPLATSTR("Azure-Storage/7.1.0 (Native; Windows; MSC_VER " STR(x) ")")
402402
#if defined(_WIN32)
403403
#if defined(_MSC_VER)
404404
#if _MSC_VER >= 1900
405405
DAT(header_value_user_agent, VER(_MSC_VER))
406406
#elif _MSC_VER >= 1800
407-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.0.0 (Native; Windows; MSC_VER 18XX)"))
407+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.1.0 (Native; Windows; MSC_VER 18XX)"))
408408
#else
409-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.0.0 (Native; Windows; MSC_VER < 1800)"))
409+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.1.0 (Native; Windows; MSC_VER < 1800)"))
410410
#endif
411411
#else
412-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.0.0 (Native; Windows)"))
412+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.1.0 (Native; Windows)"))
413413
#endif
414414
#else
415-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.0.0 (Native)"))
415+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.1.0 (Native)"))
416416
#endif
417417

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

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Azure Storage Client Library for C++ (7.0.0)
1+
# Azure Storage Client Library for C++ (7.1.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](http://azure.microsoft.com/en-us/documentation/articles/storage-introduction/).
44

@@ -92,7 +92,7 @@ To install the binaries for the Azure Storage Client Library for C++, you can ex
9292

9393
Normally, exporting NuGet package is done with the following command:
9494
```BatchFile
95-
C:\src\vcpkg> .\vcpkg export --nuget azure-storage-cpp --nuget-id=Microsoft.Azure.Storage.CPP --nuget-version=7.0.0
95+
C:\src\vcpkg> .\vcpkg export --nuget azure-storage-cpp --nuget-id=Microsoft.Azure.Storage.CPP --nuget-version=7.1.0
9696
```
9797

9898
### Via vcpkg
@@ -126,6 +126,7 @@ The validated Casablanca version for each major or recent release on different p
126126
| 6.0.0 | 2.10.10 | 2.10.10 |
127127
| 6.1.0 | 2.10.13 | 2.10.13 |
128128
| 7.0.0 | 2.10.14 | 2.10.14 |
129+
| 7.1.0 | 2.10.14 | 2.10.14 |
129130

130131
## Code Samples
131132

0 commit comments

Comments
 (0)