Skip to content

Commit cb90d58

Browse files
authored
Release 5.27 (#6392)
* Bookkeeping for 5.27.0 release. * Prep rc.1 * Final 5.27 release tag * Reset for next release
1 parent 284e110 commit cb90d58

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

.github/workflows/osrm-backend.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
ENABLE_APPLE_SILICON: "OFF"
3030
steps:
3131
- uses: actions/checkout@v3
32-
- run: pip install conan==1.51.3
32+
- run: pip install conan==1.53.0
3333
- run: conan --version
3434
- run: cmake --version
3535
- uses: actions/setup-node@v3
@@ -252,7 +252,7 @@ jobs:
252252
CXXFLAGS: "-m32 -msse2 -mfpmath=sse"
253253
TARGET_ARCH: i686
254254
ENABLE_CONAN: ON
255-
255+
256256
- name: gcc-8-release
257257
continue-on-error: false
258258
node: 12
@@ -460,7 +460,7 @@ jobs:
460460
CUCUMBER_TIMEOUT: 60000
461461
ENABLE_ASSERTIONS: ON
462462
ENABLE_CONAN: ON
463-
463+
464464
- name: conan-macos-arm64-release-node-lts
465465
build_node_package: true
466466
continue-on-error: true
@@ -553,7 +553,7 @@ jobs:
553553
key: v3-test-${{ matrix.name }}-${{ github.sha }}
554554
restore-keys: |
555555
v3-test-${{ matrix.name }}-
556-
556+
557557
- name: Prepare environment
558558
run: |
559559
PACKAGE_JSON_VERSION=$(node -e "console.log(require('./package.json').version)")
@@ -574,20 +574,20 @@ jobs:
574574
575575
- name: Install dev dependencies
576576
run: |
577-
python3 -m pip install conan==1.51.3
577+
python3 -m pip install conan==1.53.0
578578
579579
# ccache
580580
if [[ "${RUNNER_OS}" == "Linux" ]]; then
581581
sudo apt-get update -y && sudo apt-get install ccache
582582
elif [[ "${RUNNER_OS}" == "macOS" ]]; then
583583
brew install ccache
584584
fi
585-
585+
586586
# clang
587587
if [[ "${CCOMPILER}" == "clang-6.0" ]]; then
588588
sudo apt-get update -y && sudo apt-get install clang++-6
589589
fi
590-
590+
591591
# Linux dev packages
592592
if [ "${TARGET_ARCH}" != "i686" ] && [ "${ENABLE_CONAN}" != "ON" ]; then
593593
sudo apt-get update -y
@@ -697,7 +697,7 @@ jobs:
697697
run: |
698698
pushd ${OSRM_BUILD_DIR}
699699
make --jobs=${JOBS} benchmarks
700-
./src/benchmarks/alias-bench
700+
./src/benchmarks/alias-bench
701701
./src/benchmarks/json-render-bench ../src/benchmarks/portugal_to_korea.json
702702
./src/benchmarks/match-bench ../test/data/ch/monaco.osrm
703703
./src/benchmarks/packedvector-bench

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Unreleased
2+
3+
# 5.27.0
24
- Changes from 5.26.0
35
- API:
46
- ADDED: Add Flatbuffers support to NodeJS bindings. [#6338](https://github.com/Project-OSRM/osrm-backend/pull/6338)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ Download OpenStreetMap extracts for example from [Geofabrik](http://download.geo
5858

5959
Pre-process the extract with the car profile and start a routing engine HTTP server on port 5000
6060

61-
docker run -t -v "${PWD}:/data" osrm/osrm-backend osrm-extract -p /opt/car.lua /data/berlin-latest.osm.pbf
61+
docker run -t -v "${PWD}:/data" ghcr.io/project-osrm/osrm-backend osrm-extract -p /opt/car.lua /data/berlin-latest.osm.pbf
6262

6363
The flag `-v "${PWD}:/data"` creates the directory `/data` inside the docker container and makes the current working directory `"${PWD}"` available there. The file `/data/berlin-latest.osm.pbf` inside the container is referring to `"${PWD}/berlin-latest.osm.pbf"` on the host.
6464

65-
docker run -t -v "${PWD}:/data" osrm/osrm-backend osrm-partition /data/berlin-latest.osrm
66-
docker run -t -v "${PWD}:/data" osrm/osrm-backend osrm-customize /data/berlin-latest.osrm
65+
docker run -t -v "${PWD}:/data" ghcr.io/project-osrm/osrm-backend osrm-partition /data/berlin-latest.osrm
66+
docker run -t -v "${PWD}:/data" ghcr.io/project-osrm/osrm-backend osrm-customize /data/berlin-latest.osrm
6767

6868
Note there is no `berlin-latest.osrm` file, but multiple `berlin-latest.osrm.*` files, i.e. `berlin-latest.osrm` is not file path, but "base" path referring to set of files and there is an option to omit this `.osrm` suffix completely(e.g. `osrm-partition /data/berlin-latest`).
6969

70-
docker run -t -i -p 5000:5000 -v "${PWD}:/data" osrm/osrm-backend osrm-routed --algorithm mld /data/berlin-latest.osrm
70+
docker run -t -i -p 5000:5000 -v "${PWD}:/data" ghcr.io/project-osrm/osrm-backend osrm-routed --algorithm mld /data/berlin-latest.osrm
7171

7272
Make requests against the HTTP server
7373

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@project-osrm/osrm",
3-
"version": "5.27.0-unreleased",
3+
"version": "5.28.0-unreleased",
44
"private": false,
55
"description": "The Open Source Routing Machine is a high performance routing engine written in C++14 designed to run on OpenStreetMap data.",
66
"dependencies": {

0 commit comments

Comments
 (0)