diff --git a/CHANGELOG.md b/CHANGELOG.md index 4223a1f..130adbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,17 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + ## [Unreleased] - ReleaseDate +## [0.1.3] - 2021-08-23 +### Changed +- [PR#16](https://github.com/EmbarkStudios/discord-sdk/pull/16) exposed the `Snowflake` type publicly, as there are cases where you might need to use it directly as it is the underlying type for most of the unique identifiers throught the SDK. + +### Fixed +- [PR#16](https://github.com/EmbarkStudios/discord-sdk/pull/16) fixed regions to use `kebab-case` instead of `snake_case`, and add the `st-pete` region, which is apparently a voice region that can be used, but isn't listed in `/voice/regions`. + ## [0.1.2] - 2021-08-11 ### Fixed - [PR#14](https://github.com/EmbarkStudios/discord-sdk/pull/14) fixed an issue where the `RELATIONSHIP_UPDATE` event actually uses stringized timestamps in the activity information, rather than the normal `i64` timestamps in eg `SET_ACTIVITY`. @@ -25,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial crate squat -[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.2...HEAD +[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.3...HEAD +[0.1.3]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.2...0.1.3 [0.1.2]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.1...0.1.2 [0.1.1]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/EmbarkStudios/discord-sdk/compare/0.0.1...0.1.0 diff --git a/README.md b/README.md index 4bd8fb3..e1b8811 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ An (unofficial) open source Rust implementation of the [Discord Game SDK](https: - You like to live dangerously (though this library does also have some automated tests!). ## Implemented Features + ### TODO: [Achievements](https://discord.com/developers/docs/game-sdk/achievements) ### [Activities (Rich Presence)](https://discord.com/developers/docs/game-sdk/activities) @@ -144,7 +145,7 @@ cargo test --features local-testing test_activity ### Lobbies -**NOTE**: This a does not test the lobby `search` functionality as that command seems to be non-functioning and never returns results, even if the [REST](https://discord.com/developers/docs/game-sdk/lobbies#create-lobby-search) equivalent does return the expected results. +**NOTE**: This does not test the lobby `search` functionality as that command seems to be non-functioning and never returns results, even if the [REST](https://discord.com/developers/docs/game-sdk/lobbies#create-lobby-search) equivalent does return the expected results. ```sh cargo test --features local-testing test_lobbies @@ -165,8 +166,8 @@ Any contribution intentionally submitted for inclusion in an Embark Studios proj This contribution is dual licensed under EITHER OF -* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or -* MIT license ([LICENSE-MIT](LICENSE-MIT) or ) +- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or +- MIT license ([LICENSE-MIT](LICENSE-MIT) or ) at your option. diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index e0119b1..130adbf 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - ReleaseDate +## [0.1.3] - 2021-08-23 ### Changed - [PR#16](https://github.com/EmbarkStudios/discord-sdk/pull/16) exposed the `Snowflake` type publicly, as there are cases where you might need to use it directly as it is the underlying type for most of the unique identifiers throught the SDK. @@ -33,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial crate squat -[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.2...HEAD +[Unreleased]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.3...HEAD +[0.1.3]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.2...0.1.3 [0.1.2]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.1...0.1.2 [0.1.1]: https://github.com/EmbarkStudios/discord-sdk/compare/0.1.0...0.1.1 [0.1.0]: https://github.com/EmbarkStudios/discord-sdk/compare/0.0.1...0.1.0 diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 98eb9d4..815b0ea 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "discord-sdk" -version = "0.1.2" +version = "0.1.3" authors = ["Embark ", "Jake Shadle "] edition = "2018" description = "An open implementation of the Discord Game SDK"