diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6563295..1c093be 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 0a1c36f..0e70885 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -9,6 +9,7 @@ documentation = "https://docs.rs/steamworks" keywords = ["steam", "gamedev"] categories = ["games"] edition = "2021" +rust-version = "1.71.1" [features] default = [] @@ -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" diff --git a/README.md b/README.md index c11dbb5..2dc88e7 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/steamworks-sys/Cargo.toml b/steamworks-sys/Cargo.toml index eb6fdd4..129178c 100644 --- a/steamworks-sys/Cargo.toml +++ b/steamworks-sys/Cargo.toml @@ -1,6 +1,6 @@ [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" @@ -8,6 +8,7 @@ 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 = [] @@ -16,4 +17,4 @@ rebuild-bindings = ["bindgen"] [dependencies] [build-dependencies] -bindgen = { version = "0.69.2", optional = true } \ No newline at end of file +bindgen = { version = "0.69.2", optional = true }