Skip to content

Commit

Permalink
Version and documentation change for version 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
katmsft authored and vinjiang committed Sep 13, 2018
1 parent cd13e50 commit 5e9f8ad
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Azure Storage Client Library for C++
History of Changes

Changes in v5.0.1
- Resolved an issue where default CMake version 2.8 on Ubuntu 14.04 cannot build this client library.

Changes in v5.0.0
- Dropped the support for Nuget package with name 'wastorage', now this client library only release with Nuget name 'Microsoft.Azure.Storage.CPP'.
- Added support for specifying installation destination when compiling with cmake to resolve feature request #183.
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 5.0.0
PROJECT_NUMBER = 5.0.1

# 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
Expand Down
2 changes: 1 addition & 1 deletion Microsoft.WindowsAzure.Storage/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ set(AZURESTORAGE_LIBRARIES ${AZURESTORAGE_LIBRARY} ${CASABLANCA_LIBRARY} ${Boost
# Set version numbers centralized
set (AZURESTORAGE_VERSION_MAJOR 5)
set (AZURESTORAGE_VERSION_MINOR 0)
set (AZURESTORAGE_VERSION_REVISION 0)
set (AZURESTORAGE_VERSION_REVISION 1)

# Set output directories.
if(NOT DEFINED CMAKE_INSTALL_BINDIR)
Expand Down
10 changes: 5 additions & 5 deletions Microsoft.WindowsAzure.Storage/includes/wascore/constants.dat
Original file line number Diff line number Diff line change
Expand Up @@ -338,21 +338,21 @@ DAT(xml_access_tier_inferred, _XPLATSTR("AccessTierInferred"))
DAT(xml_access_tier_change_time, _XPLATSTR("AccessTierChangeTime"))

#define STR(x) #x
#define VER(x) _XPLATSTR("Azure-Storage/5.0.0 (Native; Windows; MSC_VER " STR(x) ")")
#define VER(x) _XPLATSTR("Azure-Storage/5.0.1 (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/5.0.0 (Native; Windows; MSC_VER 18XX)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/5.0.1 (Native; Windows; MSC_VER 18XX)"))
#else
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/5.0.0 (Native; Windows; MSC_VER < 1800)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/5.0.1 (Native; Windows; MSC_VER < 1800)"))
#endif
#else
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/5.0.0 (Native; Windows)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/5.0.1 (Native; Windows)"))
#endif
#else
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/5.0.0 (Native)"))
DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/5.0.1 (Native)"))
#endif

#endif // _CONSTANTS
Expand Down
Binary file modified Microsoft.WindowsAzure.Storage/version.rc
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Azure Storage Client Library for C++ (5.0.0)
# Azure Storage Client Library for C++ (5.0.1)

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/).

Expand Down

0 comments on commit 5e9f8ad

Please sign in to comment.