]> rtime.felk.cvut.cz Git - hubacji1/rrts.git/blob - CHANGELOG.md
Update changelog
[hubacji1/rrts.git] / CHANGELOG.md
1 # Changelog
2 All notable changes to this project will be documented in this file.
3
4 The format is based on [Keep a Changelog][] and this project adheres to
5 [Semantic Versioning][].
6
7 [Keep a Changelog]: http://keepachangelog.com/
8 [Semantic Versioning]: http://semver.org/
9
10 ## Unreleased
11
12 ## 0.3.1 - 2020-01-03
13 ### Fixed
14 - Double value in unsigned int constant.
15
16 ## 0.3.0 - 2020-01-03
17 ### Added
18 - Collision detection based on [cute c2][].
19 - Time restriction for algorithm.
20 - RRT node types (currently `cusp` and `connected`).
21 - Compound extensions.
22 - Dijkstra algorithm for path optimization (`rrtext3.cc`).
23 - Grid based `nn` and `nv` methods (`rrtext4.cc`).
24 - Compound extensions.
25 - JSON output.
26 - Should continue method.
27 - Deinit method -- get ready for planner reset.
28 - JSON input.
29 - JSON output.
30
31 ### Changed
32 - How the algorithm is stopped - possible to choose from more options.
33 - Separate `store_node` procedure.
34 - Grid constants used in `ext4`.
35 - Some small refactoring.
36
37 ### Deprecated
38 - `should_continue` method.
39
40 [cute c2]: https://github.com/RandyGaul/cute_headers/blob/master/cute_c2.h
41
42 ## 0.2.0 - 2019-09-26
43 ### Added
44 - Bicycle car constructor for RRTNode.
45 - Different costs extension.
46
47 ### Changed
48 - Extend next with steering from just added nodes.
49 - Refactor next.
50
51 ## 0.1.0 - 2019-08-05
52 ### Added
53 - Changelog, license, readme.
54 - Doxygen config file.
55 - [WvTest][] unit testing framework.
56 - Basic naive RRT star implementation without obstacles.
57 - Polygon obstacle, collision with obstacles.
58 - Use [Reeds and Shepp](https://github.com/ghliu/pyReedsShepp) in steer method.
59
60 [WvTest]: https://github.com/apenwarr/wvtest