Skip to content

Commit e32bbe0

Browse files
Added a changelog for 1.5.0 release (#769)
Update package version to 1.5.0 version Relates-To: OLPEDGE-1779 Signed-off-by: Mykhailo Kuchma <[email protected]> Signed-off-by: Andrei Popescu <[email protected]>
1 parent ebb1f72 commit e32bbe0

File tree

9 files changed

+28
-8
lines changed

9 files changed

+28
-8
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## v1.5.0 (07/04/2020)
2+
3+
**Common**
4+
5+
* Moved the `DefaultCache` implementation to pimpl.
6+
* Fixed various compiler warnings.
7+
* CMake now uses the official Boost Github repository instead of downloading and unpacking the archive.
8+
* Method `OlpClientSettingsFactory::CreateDefaultCache` now returns `nullptr` if it failes to open one of the user-defined disk caches.
9+
* **Work In Progress** Added API to retrieve network statistics. It is not fully implemented yet, and users should not use it.
10+
11+
**olp-cpp-sdk-authentication**
12+
13+
* Added a new `use_system_time` flag to `olp::authentication::AuthenticationSettings`. You can use it to tell the authentication module to work with system time instead of server time when retrieving tokens.
14+
15+
**olp-cpp-sdk-dataservice-read**
16+
17+
* Added a stream layer read example. For more information, see our [documentation](https://github.com/heremaps/here-olp-sdk-cpp/blob/master/docs/dataservice-read-from-stream-layer-example.md).
18+
* Added the `RemoveFromCache` method to `VolatileLayerClient`. Now, you can remove specific partitions or tiles from the mutable cache.
19+
* Added a new `PrefetchTiles` method to `VolatileLayerClient`. Now, you can prefetch volatile tiles in the same way as versioned tiles.
20+
121
## v1.4.0 (23/03/2020)
222

323
**Common**

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.4.0)
21+
project(olp-cpp-sdk VERSION 1.5.0)
2222

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

examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ elseif(ANDROID)
4242
${OLP_SDK_EXAMPLE_FAILURE_STRING})
4343

4444
else()
45-
project(${OLP_SDK_DATASERVICE_EXAMPLE_TARGET} VERSION 1.4.0)
45+
project(${OLP_SDK_DATASERVICE_EXAMPLE_TARGET})
4646

4747
add_library(${OLP_SDK_DATASERVICE_READ_EXAMPLE_TARGET}
4848
./ReadExample.cpp

examples/android/app/CMakeLists.txt.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
cmake_minimum_required(VERSION 3.5)
1919

20-
project(@OLP_SDK_EXAMPLE_TARGET_NAME@ VERSION 1.4.0)
20+
project(@OLP_SDK_EXAMPLE_TARGET_NAME@)
2121

2222
if (DEFINED OLP_SDK_HTTP_CLIENT_JAR)
2323
get_filename_component(OLP_SDK_HTTP_CLIENT_JAR_FULL_PATH "${OLP_SDK_HTTP_CLIENT_JAR}" ABSOLUTE)

examples/ios/CMakeLists.txt.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if (NOT IOS)
2121
message(FATAL_ERROR "Unsupported platform!")
2222
endif()
2323

24-
project(@OLP_SDK_EXAMPLE_TARGET_NAME@ VERSION 1.4.0)
24+
project(@OLP_SDK_EXAMPLE_TARGET_NAME@)
2525

2626
add_executable(@OLP_SDK_EXAMPLE_TARGET_NAME@
2727
${CMAKE_CURRENT_SOURCE_DIR}/ReadExample.h

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.4.0)
18+
project(olp-cpp-sdk-authentication VERSION 1.5.0)
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.4.0)
19+
project(olp-cpp-sdk-core VERSION 1.5.0)
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.4.0)
18+
project(olp-cpp-sdk-dataservice-read VERSION 1.5.0)
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.4.0)
18+
project(olp-cpp-sdk-dataservice-write VERSION 1.5.0)
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)