Skip to content

Commit c316064

Browse files
Release v1.23.0 (#1609)
Updated CHANGELOG.md and CMakeLists.txt files Relates-To: DATASDK-74 Signed-off-by: Andrey Kashcheev <ext-andrey.kashcheev@here.com>
1 parent 626588f commit c316064

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v1.23.0 (13/05/2025)
2+
3+
**olp-cpp-sdk-core**
4+
* Fixed the data race in the initialization and possible wrong request cancellation for cURL-based network.
5+
* Added the path tiling utilities that can be used to traverse and slice a `GetCoordinates` sequence into tiles.
6+
* Increased the parallel connection limit to 32 for iOS network.
7+
* Explicitly enabled support of HTTP/2 for Windows and cURL-based networks.
8+
* iOS `Foundation` library is now explicitly linked to `olp-cpp-sdk-core`.
9+
* Extended logging for iOS network.
10+
11+
**olp-cpp-sdk-dataservice-read**
12+
* Decreased log level for some messages.
13+
* Decreased the amount of allocation in `QuadTreeIndex` to improve performance.
14+
115
## v1.22.0 (18/02/2025)
216

317
**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.22.0)
21+
project(olp-cpp-sdk VERSION 1.23.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.22.0)
18+
project(olp-cpp-sdk-authentication VERSION 1.23.0)
1919
set(DESCRIPTION "C++ API library for accessing 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.22.0)
19+
project(olp-cpp-sdk-core VERSION 1.23.0)
2020
set(DESCRIPTION "Core network and utility library for the HERE OLP SDK C++")
2121

2222
find_package(RapidJSON 1.1.0 REQUIRED)

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.22.0)
18+
project(olp-cpp-sdk-dataservice-read VERSION 1.23.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.22.0)
18+
project(olp-cpp-sdk-dataservice-write VERSION 1.23.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)