changelog, consistent deprecated documentation

Conflicts:
	CHANGELOG.md
This commit is contained in:
Moritz Kobitzsch 2017-07-17 10:01:22 +02:00 committed by Daniel J. Hofmann
parent 2d02fad09b
commit 0c6bb534fd
2 changed files with 5 additions and 1 deletions

View File

@ -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 # 5.9.0
- Changes from 5.8: - Changes from 5.8:
- Algorithm: - Algorithm:

View File

@ -655,7 +655,7 @@ step.
| `off ramp` | take a ramp to exit a highway (direction given my `modifier`) | | `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` | | `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`| | `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 | | `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. | | `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). | | `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). |