Skip to content

Commit eb3c215

Browse files
Added changelog for 1.6.0 version (#821)
Update version in CMake. Relates-To: OLPEDGE-1824 Signed-off-by: Mykhailo Kuchma <[email protected]>
1 parent 1cba948 commit eb3c215

File tree

6 files changed

+32
-5
lines changed

6 files changed

+32
-5
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## v1.6.0 (05/01/2020)
2+
3+
**Common**
4+
5+
* Added the LRU functionality to the mutable disk cache. LRU is enabled by default. You can disable it using `eviction_policy` in `CacheSettings`.
6+
* Completed the network statistics implementation. It's available in `Network::GetStatistics`. Now, you can get accumulated statistics on how many bytes are processed during each operation.
7+
* Added the missing `CORE_API` export macros.
8+
* Updated various classes according to the Google coding style.
9+
* Added information on backward compatibility.
10+
* Fixed various compiler warnings.
11+
* Minor documentation changes.
12+
* Fixed the Android bug that made network responses incomplete.
13+
14+
**olp-cpp-sdk-authentication**
15+
16+
* Added the `use_system_time` flag to `olp::authentication::Settings`. You can use it when retrieving tokens to tell `olp::authentication::TokenProvider` to work with the system time instead of the server time.
17+
* Added the `olp::authentication::AuthenticationClient::Authorize` method. You can use it to collect all permissions associated with the authenticated user or application.
18+
* `olp::authentication::TokenProvider` now uses the pimpl idiom. Now, when you copy an instance of this class, it does not create a new request.
19+
* Deprecated the `olp::authentication:AutoRefreshingToken` class. It will be removed by 10.2020.
20+
* **Breaking Change** Removed the deprecated constructor of the `AuthenticationClient` class and the following deprecated methods: `SetNetworkProxySettings`, `SetNetwork`, and `SetTaskScheduler`.
21+
* The deprecation of the `olp::authentication::TokenEndpoint` and `olp::authentication::TokenRequest` classes is extended until 10.2020.
22+
23+
**olp-cpp-sdk-dataservice-read**
24+
25+
* Optimized memory overhead for prefetch.
26+
* Removed the ambiguous `PrefetchTilesRequest::WithTileKeys` method that takes an rvalue reference.
27+
128
## v1.5.0 (07/04/2020)
229

330
**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.5.0)
21+
project(olp-cpp-sdk VERSION 1.6.0)
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.5.0)
18+
project(olp-cpp-sdk-authentication VERSION 1.6.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.5.0)
19+
project(olp-cpp-sdk-core VERSION 1.6.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.5.0)
18+
project(olp-cpp-sdk-dataservice-read VERSION 1.6.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.5.0)
18+
project(olp-cpp-sdk-dataservice-write VERSION 1.6.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)