Compare commits

...

2 Commits

Author SHA1 Message Date
Nolan Darilek 0c02c10895 (cargo-release) version 0.2.0
continuous-integration/drone/push Build is passing Details
2022-08-27 08:49:44 -05:00
Nolan Darilek a732c8bb3a Update changelog. 2022-08-27 08:49:19 -05:00
2 changed files with 26 additions and 2 deletions

24
CHANGELOG.md Normal file
View File

@ -0,0 +1,24 @@
# Changelog
All notable changes to this project will be documented in this file.
## Version 0.2.0 - 2022-08-27
### Refactor
- `map.at` now returns `Option<&Tile>` rather than a wall tile when requested coordinates are out-of-bounds.
## Version 0.1.1 - 2022-03-18
### Miscellaneous Tasks
- More automated release configuration.
## Version 0.1.0 - 2022-03-18
### Miscellaneous Tasks
- Rename crate and set up automated releases.
- Remove demo.
<!-- generated by git-cliff -->

View File

@ -1,6 +1,6 @@
[package]
name = "here_be_dragons"
version = "0.1.1"
version = "0.2.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>", "Krzysztof Langner <klangner@gmail.com>"]
description = "Map generator for games"
keywords = ["game", "map", "map-generator"]
@ -16,4 +16,4 @@ rand = "0.8"
tag-prefix = ""
publish = false
push = false
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]