From 0c6bb534fd91cf0d42b90be543b328192607db02 Mon Sep 17 00:00:00 2001 From: Moritz Kobitzsch Date: Mon, 17 Jul 2017 10:01:22 +0200 Subject: [PATCH] changelog, consistent deprecated documentation Conflicts: CHANGELOG.md --- CHANGELOG.md | 4 ++++ docs/http.md | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ccff5ffa2..819deb686 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 5.9.1 + - Changes from 5.9.0: + - Deprecated `UseLane`. Use the intersections array if you require lanes between steps + # 5.9.0 - Changes from 5.8: - Algorithm: diff --git a/docs/http.md b/docs/http.md index ee511cc25..936a624aa 100644 --- a/docs/http.md +++ b/docs/http.md @@ -655,7 +655,7 @@ step. | `off ramp` | take a ramp to exit a highway (direction given my `modifier`) | | `fork` | take the left/right side at a fork depending on `modifier` | | `end of road` | road ends in a T intersection turn in direction of `modifier`| -| `use lane` | going straight on a specific lane -- deprecated, use the intersections information | +| `use lane` | **Deprecated** replaced by lanes on all intersection entries | | `continue` | Turn in direction of `modifier` to stay on the same road | | `roundabout` | traverse roundabout, has additional property `exit` with NR if the roundabout is left. The modifier specifies the direction of entering the roundabout. | | `rotary` | a traffic circle. While very similar to a larger version of a roundabout, it does not necessarily follow roundabout rules for right of way. It can offer `rotary_name` and/or `rotary_pronunciation` parameters (located in the RouteStep object) in addition to the `exit` parameter (located on the StepManeuver object). |