Skip to content

Commit a0b1a5d

Browse files
committed
Update version and CHANGELOG for 5.5.3.
1 parent 411313f commit a0b1a5d

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 5.5.3
2+
- Changes from 5.5.2
3+
- Bugfixes:
4+
- PR #3504 - debug tiles were very slow to generate due to unnecessarily copying data in a hot loop.
5+
- PR #3556 - fix an assertion in the walking profile triggered by tight spiral stairwells
6+
- PR #3469 - don't assert when identical coordinates are supplied to some calculations - OSM data contains these, we shouldn't crash.
7+
- Enhancements:
8+
- backported 6ea9f9fdf19 - when anticipating upcoming lanes, consider how many lanes need to be crossed to get there.
9+
- when using osrm-datastore, it will attempt to clean up locks if it crashes.
10+
111
# 5.5.2
212
- Changes from 5.5.1
313
- Revert smarter map-matching search radius. The increased radius causes performance degredation when map-matching against non-car road networks with more edges.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ endif()
5353
project(OSRM C CXX)
5454
set(OSRM_VERSION_MAJOR 5)
5555
set(OSRM_VERSION_MINOR 5)
56-
set(OSRM_VERSION_PATCH 2)
56+
set(OSRM_VERSION_PATCH 3)
5757
set(OSRM_VERSION "${OSRM_VERSION_MAJOR}.${OSRM_VERSION_MINOR}.${OSRM_VERSION_PATCH}")
5858

5959
add_definitions(-DOSRM_PROJECT_DIR="${CMAKE_CURRENT_SOURCE_DIR}")

0 commit comments

Comments
 (0)