Skip to content

Commit bc616d5

Browse files
Release v1.15.2 (heremaps#1365)
Updated CHANGELOG and CMakeLists files for the release v1.15.2 Relates-To: OLPEDGE-2777 Signed-off-by: Andrey Kashcheev <ext-andrey.kashcheev@here.com>
1 parent daf8e9d commit bc616d5

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v1.15.2 (04/11/2022)
2+
3+
**Common**
4+
* Extended `olp::client::ApiResponse` with an optional payload.
5+
* Added support for non-copiable response types in `olp::client::ApiResponse`.
6+
* Updated the README and GettingStartedGuide documentation.
7+
* Added performance improvements.
8+
* Enabled preprocessing for generating Doxygen documentation.
9+
* Added the service name in the base client's URL when `olp::client::ApiLookupSettings::catalog_endpoint_provider` is set.
10+
* Fixed `olp::utils::Dir::Size` to traverse through all nested directories.
11+
12+
**olp-cpp-sdk-dataservice-read**
13+
* Extended `olp::dataservice::read::DataResponse` and `olp::dataservice::read::DataResponseCallback` with `olp::client::NetworkStatistics` as a payload.
14+
* Changed `olp::dataservice::read::repository::NamedMutex` to be cancellation-aware: when the request is canceled, you will not be able to lock the internal mutex.
15+
16+
**olp-cpp-sdk-authentication**
17+
* Changed the internal static `std::regex` object to local instead of the global one. The local object prevents getting the `std::bad_cast` exception on some compilers.
18+
* Improved documentation.
19+
120
## v1.15.1 (16/06/2022)
221

322
**olp-cpp-sdk-dataservice-read**

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
cmake_minimum_required(VERSION 3.9)
1919

2020
# Build the sdk targets
21-
project(olp-cpp-sdk VERSION 1.15.1)
21+
project(olp-cpp-sdk VERSION 1.15.2)
2222

2323
# Add preprocessor definitions for the SDK version and platform name
2424
add_definitions(-DOLP_SDK_VERSION_STRING=\"${olp-cpp-sdk_VERSION}\")

olp-cpp-sdk-authentication/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616
# License-Filename: LICENSE
1717

18-
project(olp-cpp-sdk-authentication VERSION 1.15.1)
18+
project(olp-cpp-sdk-authentication VERSION 1.15.2)
1919
set(DESCRIPTION "C++ API library for accesing HERE Account authentication service")
2020

2121
file(GLOB_RECURSE AUTHENTICATION_INC "include/*.h*")

olp-cpp-sdk-core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# License-Filename: LICENSE
1717

1818

19-
project(olp-cpp-sdk-core VERSION 1.15.1)
19+
project(olp-cpp-sdk-core VERSION 1.15.2)
2020
set(DESCRIPTION "Core network and utility library for the HERE OLP SDK C++")
2121

2222
find_package(RapidJSON 1.1.0 REQUIRED CMAKE_FIND_ROOT_PATH_BOTH)

olp-cpp-sdk-dataservice-read/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616
# License-Filename: LICENSE
1717

18-
project(olp-cpp-sdk-dataservice-read VERSION 1.15.1)
18+
project(olp-cpp-sdk-dataservice-read VERSION 1.15.2)
1919
set(DESCRIPTION "C++ API library for reading OLP data")
2020

2121
file(GLOB_RECURSE INC "include/*.h*")

olp-cpp-sdk-dataservice-write/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# SPDX-License-Identifier: Apache-2.0
1616
# License-Filename: LICENSE
1717

18-
project(olp-cpp-sdk-dataservice-write VERSION 1.15.1)
18+
project(olp-cpp-sdk-dataservice-write VERSION 1.15.2)
1919
set(DESCRIPTION "C++ API library for writing data to OLP")
2020

2121
set(OLP_SDK_DATASERVICE_WRITE_API_HEADERS

0 commit comments

Comments
 (0)