diff --git a/Cargo.toml b/Cargo.toml index eb4b194..8ac5e68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy-discord" description = "A bevy plugin for sending and receiving discord messages." -version = "0.6.0-alpha.2" +version = "0.6.0-alpha.3" edition = "2021" authors = ["Aditya Kumar "] readme = "README.md" @@ -17,7 +17,7 @@ http = ["dep:serenity"] bot_cache = ["serenity/cache"] rich_presence = ["dep:discord-sdk", "dep:async-trait"] rich_presence_local_testing = ["discord-sdk/local-testing"] -docsrs = [] +docsrs = [] # Don't use this feature anywhere other than cargo doc, examples and rustdoc [dependencies] bevy_app = "0.15" diff --git a/PRERELEASE-CHANGELOG.md b/PRERELEASE-CHANGELOG.md index 46bdc10..658b254 100644 --- a/PRERELEASE-CHANGELOG.md +++ b/PRERELEASE-CHANGELOG.md @@ -5,7 +5,21 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.6.0-alpha.2] +## [0.6.0-alpha.3] - 2025-01-31 + +## Added +- feature `docsrs` +- `new` function implementation in `DiscordPluginGroup` +- `rich_presence` example in `README.md` + +## Changed +- Moved `bevy_discord::rich_presence::discord_sdk` to `bevy_discord::discord_sdk` +- Made Re-exports directly instead of `pub use _::*` in module + +## Fixed +- examples + +## [0.6.0-alpha.2] - 2025-01-23 ### Changed - Made `setup_rich_presence` function use tokio's `block_on` function instead of spawn @@ -15,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Made docs buildable [See Error](https://docs.rs/crate/bevy-discord/0.6.0-alpha.1) -## [0.6.0-alpha.1] +## [0.6.0-alpha.1] - 2025-01-06 _This release note is continued from `v0.5` release note_ @@ -32,7 +46,7 @@ _This release note is continued from `v0.5` release note_ - Refactor `BEventCollection` to `EventCollection` and moved it from `bevy_discord::bot::common::BEventCollection` to `bevy_discord::events::EventCollection` - Update `create_event_collection_and_handler` macro with refactored items -## [0.5.0-beta.1] +## [0.5.0-beta.1] - 2024-11-28 ### Added - Added ability to have multiple shards in `DiscordBotConfig`