Skip to content

Commit

Permalink
build: bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
unrenamed committed Nov 1, 2023
1 parent 6e839f9 commit 907f5c8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "knossos"
version = "0.3.0"
version = "0.4.0"
authors = ["unrenamed <[email protected]>"]
description = "Rust library for generating and rendering mazes"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 907f5c8

Please sign in to comment.