Skip to content

Commit

Permalink
0.11.0 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
Noxime committed Feb 7, 2024
1 parent ff5aae6 commit 1df3acb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
toolchain: [stable, nightly]
toolchain: [stable, nightly, "1.71.1"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "steamworks"
version = "0.10.0"
version = "0.11.0"
authors = ["Thinkofname"]
description = "Provides rust friendly bindings to the steamworks sdk"
license = "MIT / Apache-2.0"
Expand All @@ -9,6 +9,7 @@ documentation = "https://docs.rs/steamworks"
keywords = ["steam", "gamedev"]
categories = ["games"]
edition = "2021"
rust-version = "1.71.1"

[features]
default = []
Expand All @@ -22,7 +23,7 @@ members = [
]

[dependencies]
steamworks-sys = {path = "./steamworks-sys", version = "0.10.0"}
steamworks-sys = { path = "./steamworks-sys", version = "0.11.0" }
thiserror = "1.0"
bitflags = "1.2"
lazy_static = "1.4"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ steamworks = "0.10.0"

| Crate | SDK | MSRV |
|--------|-------|--------|
| git | 1.58a | 1.56.1 |
| git | 1.58a | 1.71.1 |
| 0.10.0 | 1.54 | 1.56.1 |
| 0.9.0 | 1.53a | 1.56.1 |

Expand Down
5 changes: 3 additions & 2 deletions steamworks-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
name = "steamworks-sys"
version = "0.10.0"
version = "0.11.0"
authors = ["Thinkofname"]
build = "build.rs"
description = "Provides raw bindings to the steamworks sdk"
license = "MIT / Apache-2.0"
repository = "https://github.com/Noxime/steamworks-rs"
documentation = "https://docs.rs/steamworks-sys"
edition = "2021"
rust-version = "1.71.1"

[features]
default = []
Expand All @@ -16,4 +17,4 @@ rebuild-bindings = ["bindgen"]
[dependencies]

[build-dependencies]
bindgen = { version = "0.69.2", optional = true }
bindgen = { version = "0.69.2", optional = true }

0 comments on commit 1df3acb

Please sign in to comment.