diff --git a/discord_game_sdk_sys/Cargo.toml b/discord_game_sdk_sys/Cargo.toml index 932a258..4a8b256 100644 --- a/discord_game_sdk_sys/Cargo.toml +++ b/discord_game_sdk_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "discord_game_sdk_sys" -version = "1.0.0" # check sys/src/lib.rs +version = "1.0.1" # check sys/src/lib.rs authors = ["ldesgoui "] edition = "2018" description = "Low-level bindings for the Discord Game SDK" diff --git a/discord_game_sdk_sys/README.md b/discord_game_sdk_sys/README.md index 3cab398..bc32bf7 100644 --- a/discord_game_sdk_sys/README.md +++ b/discord_game_sdk_sys/README.md @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -discord_game_sdk_sys = "1.0.0" +discord_game_sdk_sys = "1.0.1" ``` Read up on potential [`bindgen` requirements]. diff --git a/discord_game_sdk_sys/src/lib.rs b/discord_game_sdk_sys/src/lib.rs index 9618b19..229896e 100644 --- a/discord_game_sdk_sys/src/lib.rs +++ b/discord_game_sdk_sys/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! discord_game_sdk_sys = "1.0.0" +//! discord_game_sdk_sys = "1.0.1" //! ``` //! //! Read up on potential [`bindgen` requirements]. @@ -72,7 +72,7 @@ //! [official terms of the Discord Game SDK]: https://discordapp.com/developers/docs/legal #![allow(clippy::all, warnings)] -#![doc(html_root_url = "https://docs.rs/discord_game_sdk_sys/1.0.0")] +#![doc(html_root_url = "https://docs.rs/discord_game_sdk_sys/1.0.1")] // Strings in the SDK are already UTF-8, we rarely end up using CStr/CString because of the // development overhead costs, `u8`s mean we have to do less conversions in code.