diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bc2029..0c99aec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ All notable changes to this project will be documented in this file. +## [0.2.0] - 2024-04-25 + +### Documentation + +- Adding notes on running it privately +- Fix formatting of the settings +- Update README +- Clarify the default room setup + +### Features + +- Allow multiple room configs +- Add a WebUI +- Add a poke command to the daemon +- Improve the welcome message +- Accept stdin for the message + +### Miscellaneous Tasks + +- Release v0.2.0 + +### Styling + +- Spellchecking + ## [0.1.1] - 2024-04-19 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 54c424a..9942081 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2059,7 +2059,7 @@ checksum = "db23d408679286588f4d4644f965003d056e3dd5abcaaa938116871d7ce2fee7" [[package]] name = "pokem" -version = "0.1.1" +version = "0.2.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 7fdd9ea..02489e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pokem" -version = "0.1.1" +version = "0.2.0" edition = "2021" authors = ["Patrick Jackson "] readme = "README.md"