|
| 1 | +# 1.0.12 |
| 2 | +## Bugfixes |
| 3 | +- fix for passable borders (see #62, merges #63) |
| 4 | + |
| 5 | +# 1.0.11 |
| 6 | +## Bugfixes |
| 7 | +- always call cleanup |
| 8 | +- cleanup worlds |
| 9 | +- return empty on msp |
| 10 | + |
| 11 | +# 1.0.10 |
| 12 | +## Bugfixes |
| 13 | +- allow diagonal crossing movement over a border (see #58) |
| 14 | +- fix import in documentation for graphs |
| 15 | + |
| 16 | +# 1.0.9 |
| 17 | +## Bugifxes |
| 18 | +- update return type annoation (see #55) |
| 19 | + |
| 20 | +# 1.0.8 |
| 21 | +## Performance |
| 22 | +- huge performance update by reducing lookup time for smallest entry in heapq. (see #53, thanks to @peterchenadded) |
| 23 | + |
| 24 | +# 1.0.7 |
| 25 | +## Bugfixes |
| 26 | +- fixed calculation of graph width (see #52) |
| 27 | + |
| 28 | +# 1.0.6 |
| 29 | +## Bugfixes |
| 30 | +- removed an unused debug print that lead to performance issues on big maps |
| 31 | + |
| 32 | +# 1.0.5 |
| 33 | +## Bugfixes |
| 34 | +- fixed a bug for graphs where node_ids were not unique (#51) |
| 35 | + |
| 36 | +# 1.0.4 |
| 37 | +## Bugfixes |
| 38 | +- backward-compability with Python 3.9 |
| 39 | + |
| 40 | +# 1.0.3 |
| 41 | +## Bugfixes |
| 42 | +- lookup-table/cache for the path in grid_str for faster output. |
| 43 | + |
| 44 | +## New features |
| 45 | +- Support for generic graphs that are not grids. |
| 46 | + |
| 47 | +## General |
| 48 | +- Minor PEP 8 fixes, (import order, remove empty lines, remove utf-8 force because it's the default in Python3) |
| 49 | + |
| 50 | +# 1.0.2 |
| 51 | +## New features |
| 52 | +- portals/elevators/steps (see [docs/02_connecting_grids.md](docs/02_connecting_grids.md)) |
| 53 | + |
| 54 | +## Security |
| 55 | +- update Pipfile.lock (had depenencies on vulnerable pytest version) |
| 56 | + |
| 57 | +## General |
| 58 | +- **BREAKING CHANGE** remove Python 2 support (for older Python 3 and Python 2 see python2-branch) |
| 59 | +- **BREAKING CHANGE** Node is a dataclass now |
| 60 | +- stricter flake8 integration |
| 61 | +- moved usage documentation to [docs](docs/) |
| 62 | +- add contributing and changelog |
| 63 | +- update license to 2023 |
| 64 | + |
| 65 | +# 1.0.1 |
| 66 | +## Bugfixes |
| 67 | +- fix super call in Minimum Spanning Tree |
| 68 | + |
| 69 | +# 1.0.0 |
| 70 | +## New features |
| 71 | +- add Minimum Spanning Tree |
| 72 | + |
| 73 | +## General |
| 74 | +- throw error when check_neighbors isn't implemented |
| 75 | +- add badges |
| 76 | +- fix spelling, typos and update text in Readme |
| 77 | +- update License to 2020 |
| 78 | + |
| 79 | +# 0.4.0 |
| 80 | +## Bugfix |
| 81 | +- fix calc_cost (cost was calculated incorrectly) |
| 82 | + |
| 83 | +## General |
| 84 | +- add pipenv Pipfile |
| 85 | + |
| 86 | +# 0.3.0 |
| 87 | +## Bugfix |
| 88 | +- add long description from README.md to setup.py |
| 89 | + |
| 90 | +## General |
| 91 | +- More documentation and typo fixes |
| 92 | + |
| 93 | +# 0.2.0 |
| 94 | +## Bugfixes |
| 95 | +- use copy.copy for python2.5 |
| 96 | +- cleanup grid instead of recreate it every time (see #9) |
| 97 | +- **BEHAVIOR CHANGED** Switch node walkable flag to use it as weight, so <0 is an obstacle and >=1 is a walkable field now |
| 98 | + |
| 99 | +## New features |
| 100 | +- BestFirstSearch (BFS) |
| 101 | +- raytrace for path smoothing |
| 102 | +- weighted path finding for A* and Dijkstra |
| 103 | + |
| 104 | +## General |
| 105 | +- coveralls integration |
| 106 | +- removed debug logs |
| 107 | +- updated license to 2018 |
| 108 | +- More unit tests, add constrains for time and step count |
| 109 | +- flake8 integration |
| 110 | + |
| 111 | +# 0.1.0 |
| 112 | +Initial release |
0 commit comments