Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ldesgoui committed May 3, 2020
1 parent 157df52 commit 6cb976e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions discord_game_sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "discord_game_sdk"
version = "1.0.0-rc.4" # check src/lib.rs
version = "1.0.0" # check src/lib.rs
authors = ["ldesgoui <[email protected]>"]
edition = "2018"
description = "Safe wrapper for the Discord Game SDK"
Expand All @@ -16,7 +16,7 @@ no-default-features = true

[dependencies]
bitflags = "1.2"
discord_game_sdk_sys = { path = "../discord_game_sdk_sys", version = "1.0.0-rc.1" }
discord_game_sdk_sys = { path = "../discord_game_sdk_sys", version = "1.0.0" }
log = "0.4"
memchr = "2.2"
image = { version = "0.23", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion discord_game_sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
discord_game_sdk = "1.0.0-rc.4"
discord_game_sdk = "1.0.0"
```

Read up on potential [`bindgen` requirements].
Expand Down
4 changes: 2 additions & 2 deletions discord_game_sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
//!
//! ```toml
//! [dependencies]
//! discord_game_sdk = "1.0.0-rc.4"
//! discord_game_sdk = "1.0.0"
//! ```
//!
//! Read up on potential [`bindgen` requirements].
Expand Down Expand Up @@ -112,7 +112,7 @@
//! [official terms of the Discord Game SDK]: https://discordapp.com/developers/docs/legal
//! [twitter]: https://twitter.com/ldesgoui
#![doc(html_root_url = "https://docs.rs/discord_game_sdk/1.0.0-rc.4")]
#![doc(html_root_url = "https://docs.rs/discord_game_sdk/1.0.0")]

mod action;
mod activity;
Expand Down
2 changes: 1 addition & 1 deletion discord_game_sdk_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "discord_game_sdk_sys"
version = "1.0.0-rc.1" # check sys/src/lib.rs
version = "1.0.0" # check sys/src/lib.rs
authors = ["ldesgoui <[email protected]>"]
edition = "2018"
description = "Low-level bindings for the Discord Game SDK"
Expand Down
2 changes: 1 addition & 1 deletion discord_game_sdk_sys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
discord_game_sdk_sys = "1.0.0-rc.1"
discord_game_sdk_sys = "1.0.0"
```

Read up on potential [`bindgen` requirements].
Expand Down
4 changes: 2 additions & 2 deletions discord_game_sdk_sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//!
//! ```toml
//! [dependencies]
//! discord_game_sdk_sys = "1.0.0-rc.1"
//! discord_game_sdk_sys = "1.0.0"
//! ```
//!
//! Read up on potential [`bindgen` requirements].
Expand Down Expand Up @@ -82,7 +82,7 @@
//! [twitter]: https://twitter.com/ldesgoui
#![allow(clippy::all, warnings)]
#![doc(html_root_url = "https://docs.rs/discord_game_sdk_sys/1.0.0-rc.1")]
#![doc(html_root_url = "https://docs.rs/discord_game_sdk_sys/1.0.0")]

// 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.
Expand Down

0 comments on commit 6cb976e

Please sign in to comment.