Skip to content

Commit 438e8a8

Browse files
Jinming-Huvinjiang
authored andcommitted
Release 7.3.0
1 parent 3c895d6 commit 438e8a8

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

Changelog.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Azure Storage Client Library for C++
22
History of Changes
33

4+
Changes in v7.3.0
5+
- New feature: Customer provided key (CPK-V)
6+
- New feature: File lease
7+
- Upgraded CPPRest to latest version 2.10.15.
8+
49
Changes in v7.2.0
510
- New feature: Previous snapshot with URL.
611
- Service version upgraded to 2019-07-07.

Doxyfile

+1-1
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.2.0
41+
PROJECT_NUMBER = 7.3.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

+1-1
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 2)
153+
set (AZURESTORAGE_VERSION_MINOR 3)
154154
set (AZURESTORAGE_VERSION_REVISION 0)
155155

156156
# Set output directories.

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

+5-5
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.2.0 (Native; Windows; MSC_VER " STR(x) ")")
406+
#define VER(x) _XPLATSTR("Azure-Storage/7.3.0 (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.2.0 (Native; Windows; MSC_VER 18XX)"))
412+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER 18XX)"))
413413
#else
414-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.2.0 (Native; Windows; MSC_VER < 1800)"))
414+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER < 1800)"))
415415
#endif
416416
#else
417-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.2.0 (Native; Windows)"))
417+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows)"))
418418
#endif
419419
#else
420-
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.2.0 (Native)"))
420+
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native)"))
421421
#endif
422422

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

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Azure Storage Client Library for C++ (7.2.0)
1+
# Azure Storage Client Library for C++ (7.3.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

@@ -65,7 +65,7 @@ To build with source code, there are three ways to install dependencies:
6565
Because Casablanca does not release NuGet packages anywhere anymore, Starting from 5.1.0, this repository cannot be built with pre-built Casablanca NuGet packages. However, you can export your own version of Casablanca NuGet packages to install dependencies of this project:
6666
```BatchFile
6767
C:\src\vcpkg> .\vcpkg install cpprestsdk
68-
C:\src\vcpkg> .\vcpkg export --nuget cpprestsdk --nuget-id=Casablanca --nuget-version=2.10.14
68+
C:\src\vcpkg> .\vcpkg export --nuget cpprestsdk --nuget-id=Casablanca --nuget-version=2.10.15
6969
```
7070
7171
- Manage dependencies by yourself
@@ -128,6 +128,7 @@ The validated Casablanca version for each major or recent release on different p
128128
| 7.0.0 | 2.10.14 | 2.10.14 |
129129
| 7.1.0 | 2.10.14 | 2.10.14 |
130130
| 7.2.0 | 2.10.14 | 2.10.14 |
131+
| 7.3.0 | 2.10.15 | 2.10.15 |
131132

132133
## Code Samples
133134

@@ -222,7 +223,7 @@ git clone https://github.com/Microsoft/cpprestsdk.git
222223

223224
- Checkout the version on which Azure Storage Client Library for C++ depends:
224225
```bash
225-
git checkout tags/v2.10.14 -b v2.10.14
226+
git checkout tags/v2.10.15 -b v2.10.15
226227
```
227228

228229
- Build the project in Release mode
@@ -257,7 +258,7 @@ The library is generated under `azure-storage-cpp/Microsoft.WindowsAzure.Storage
257258
The Azure Storage Client Library for C++ project depends on Unitest++ for unit test:
258259

259260
To build and install Unitest++:
260-
- Clone the project using git:
261+
- Clone the project using git:
261262
```bash
262263
git clone https://github.com/unittest-cpp/unittest-cpp.git
263264
```
@@ -330,7 +331,7 @@ git clone https://github.com/Microsoft/cpprestsdk.git
330331
- Checkout the version on which Azure Storage Client Library for C++ depends:
331332
```bash
332333
cd cpprestsdk
333-
git checkout tags/v2.10.14 -b v2.10.14
334+
git checkout tags/v2.10.15 -b v2.10.15
334335
```
335336

336337
- Build the project in Release mode
@@ -364,7 +365,7 @@ The library is generated under `azure-storage-cpp/Microsoft.WindowsAzure.Storage
364365
The Azure Storage Client Library for C++ project depends on Unitest++ for unit test:
365366

366367
To build and install Unitest++:
367-
- Clone the project using git:
368+
- Clone the project using git:
368369
```bash
369370
git clone https://github.com/unittest-cpp/unittest-cpp.git
370371
```

azure-pipelines.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pr:
66
- dev
77

88
variables:
9-
cpp_rest_sdk_version: 2.10.14
9+
cpp_rest_sdk_version: 2.10.15
1010

1111
jobs:
1212
- job: build_test_linux
@@ -32,6 +32,10 @@ jobs:
3232
container_image: ubuntu18.04.i686:cpprestsdk_$(cpp_rest_sdk_version)
3333
build_type: Release
3434
build_env_init: export CXXFLAGS=-m32
35+
CENTOS7_DEBUG:
36+
container_image: centos7:cpprestsdk_$(cpp_rest_sdk_version)
37+
build_type: Debug
38+
build_env_init: source scl_source enable devtoolset-4
3539

3640
pool:
3741
vmImage: 'ubuntu-16.04'

0 commit comments

Comments
 (0)