Format changelog with more whitespace

This commit is contained in:
Joscha 2023-12-27 00:06:34 +01:00
parent 96743e26e2
commit 37934b3af8

View file

@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
Procedure when bumping the version number: Procedure when bumping the version number:
1. Update dependencies in a separate commit 1. Update dependencies in a separate commit
2. Set version number in `Cargo.toml` 2. Set version number in `Cargo.toml`
3. Add new section in this changelog 3. Add new section in this changelog
@ -14,6 +15,7 @@ Procedure when bumping the version number:
## Unreleased ## Unreleased
### Changed ### Changed
- **(breaking)** `bot::instance::ServerConfig::default` now points to `euphoria.leet.nu` - **(breaking)** `bot::instance::ServerConfig::default` now points to `euphoria.leet.nu`
- Updated set of emoji names - Updated set of emoji names
- Documentation now references `euphoria.leet.nu` instead of `euphoria.io` - Documentation now references `euphoria.leet.nu` instead of `euphoria.io`
@ -21,6 +23,7 @@ Procedure when bumping the version number:
## v0.4.0 - 2023-05-14 ## v0.4.0 - 2023-05-14
### Added ### Added
- `bot::botrulez::Uptime` now implements `bot::command::Command` - `bot::botrulez::Uptime` now implements `bot::command::Command`
- `bot::command::parse_prefix_initiated` - `bot::command::parse_prefix_initiated`
- `bot::commands::Commands::fallthrough` - `bot::commands::Commands::fallthrough`
@ -28,6 +31,7 @@ Procedure when bumping the version number:
- `conn::Error::ConnectionTimedOut` - `conn::Error::ConnectionTimedOut`
### Changed ### Changed
- **(breaking)** `bot::command::ClapCommand::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>` - **(breaking)** `bot::command::ClapCommand::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>`
- **(breaking)** `bot::command::Command::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>` - **(breaking)** `bot::command::Command::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>`
- **(breaking)** `bot::commands::Commands::handle_packet` now returns a `Result<bool, E>` instead of a `Result<(), E>` - **(breaking)** `bot::commands::Commands::handle_packet` now returns a `Result<bool, E>` instead of a `Result<(), E>`
@ -36,6 +40,7 @@ Procedure when bumping the version number:
- `bot::instance::Instance` now implements `Clone` - `bot::instance::Instance` now implements `Clone`
### Fixed ### Fixed
- **(breaking)** Deserializing empty events and replies by turning unit structs into empty structs - **(breaking)** Deserializing empty events and replies by turning unit structs into empty structs
- `phone` and `mobile` emoji - `phone` and `mobile` emoji
- Instances getting stuck in "Connecting" state - Instances getting stuck in "Connecting" state
@ -44,16 +49,19 @@ Procedure when bumping the version number:
## v0.3.1 - 2023-02-26 ## v0.3.1 - 2023-02-26
### Added ### Added
- `bot::botrulez::FullHelp` now implements `bot::command::Command` - `bot::botrulez::FullHelp` now implements `bot::command::Command`
- `bot::botrulez::Ping` now implements `bot::command::Command` - `bot::botrulez::Ping` now implements `bot::command::Command`
- `bot::botrulez::ShortHelp` now implements `bot::command::Command` - `bot::botrulez::ShortHelp` now implements `bot::command::Command`
- `bot::instances::Instances::is_from_known_instance` - `bot::instances::Instances::is_from_known_instance`
### Changed ### Changed
- Instances log to target `euphoxide::live::<name>` - Instances log to target `euphoxide::live::<name>`
- Instances stay connected if auth is required but no password is set - Instances stay connected if auth is required but no password is set
### Fixed ### Fixed
- `!uptime` minute count - `!uptime` minute count
- Instance reconnecting after encountering a 404 (it now stops and logs an error) - Instance reconnecting after encountering a 404 (it now stops and logs an error)
- Instance taking too long to stop when stopped during reconnect delay - Instance taking too long to stop when stopped during reconnect delay
@ -61,6 +69,7 @@ Procedure when bumping the version number:
## v0.3.0 - 2023-02-11 ## v0.3.0 - 2023-02-11
### Added ### Added
- `bot` feature - `bot` feature
- `bot` module (enable the `bot` feature to use) - `bot` module (enable the `bot` feature to use)
- `Emoji` for finding, replacing and removing colon-delimited emoji in text - `Emoji` for finding, replacing and removing colon-delimited emoji in text
@ -73,20 +82,24 @@ Procedure when bumping the version number:
- VSCode project settings - VSCode project settings
### Changed ### Changed
- **(breaking)** `conn` module redesigned and rewritten - **(breaking)** `conn` module redesigned and rewritten
- **(breaking)** `nick_hue` moved to `nick::hue_without_removing_emoji` - **(breaking)** `nick_hue` moved to `nick::hue_without_removing_emoji`
- Renamed `testbot` example to `testbot_manual` - Renamed `testbot` example to `testbot_manual`
### Removed ### Removed
- **(breaking)** `connect` (see `conn::Conn::connect`) - **(breaking)** `connect` (see `conn::Conn::connect`)
- **(breaking)** `wrap` (see `conn::Conn::wrap`) - **(breaking)** `wrap` (see `conn::Conn::wrap`)
## v0.2.0 - 2022-12-10 ## v0.2.0 - 2022-12-10
### Added ### Added
- `connect` - `connect`
### Changed ### Changed
- **(breaking)** Updated dependencies - **(breaking)** Updated dependencies
## v0.1.0 - 2022-10-23 ## v0.1.0 - 2022-10-23