diff --git a/CHANGELOG.md b/CHANGELOG.md index 69dc378..803938f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Conventional Commits](https://www.conventionalcommi ## [Unreleased] +## [0.4.0] - 2023-11-01 + +### Added + +- Implement an option to randomly place start `S` and goal `G` points along the borders ensuring a viable path between the two points for the [GameMap](./src/maze/formatters/game_map.rs) formatter + +- Add the new option `--with-start-goal` to the `game-map` command on CLI + ## [0.3.0] - 2023-05-06 ### Added @@ -40,7 +48,8 @@ and this project adheres to [Conventional Commits](https://www.conventionalcommi - Orthogonal maze builder with 10 optional generation algorithms - Ascii, game map and image formatters to save the generated maze to files -[unreleased]: https://github.com/unrenamed/knossos/compare/v0.3.0...HEAD +[unreleased]: https://github.com/unrenamed/knossos/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/unrenamed/knossos/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/unrenamed/knossos/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/unrenamed/knossos/compare/v0.1.2...v0.2.0 [0.1.2]: https://github.com/unrenamed/knossos/releases/tag/v0.1.2 diff --git a/Cargo.lock b/Cargo.lock index aeb47d1..6b72e83 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -518,7 +518,7 @@ dependencies = [ [[package]] name = "knossos" -version = "0.3.0" +version = "0.4.0" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index 099198f..db18130 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "knossos" -version = "0.3.0" +version = "0.4.0" authors = ["unrenamed "] description = "Rust library for generating and rendering mazes" edition = "2021" diff --git a/README.md b/README.md index ca4a4a5..288a688 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ cargo add knossos Or add the following line to your `Cargo.toml`: ```no_test [dependencies] -knossos = "0.3.0" +knossos = "0.4.0" ``` ## Usage diff --git a/src/lib.rs b/src/lib.rs index 146b4e3..2850aa5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! Or add the following line to your `Cargo.toml`: //! ```no_test //! [dependencies] -//! knossos = "0.3.0" +//! knossos = "0.4.0" //! ``` //! //! # Usage