Skip to content

Commit

Permalink
Bump to v0.9.36
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Nov 5, 2022
1 parent 6610ae6 commit 576c234
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/rb-sys-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rb-sys-build"
version = "0.9.35"
version = "0.9.36"
edition = "2018"
description = "Build system for rb-sys"
homepage = "https://github.com/oxidize-rb/rb-sys"
Expand Down
2 changes: 1 addition & 1 deletion crates/rb-sys-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rb-sys-tests"
version = "0.9.35"
version = "0.9.36"
edition = "2018"
autotests = false
publish = false
Expand Down
4 changes: 2 additions & 2 deletions crates/rb-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
build = "build/main.rs"
name = "rb-sys"
version = "0.9.35"
version = "0.9.36"
edition = "2018"
readme = "readme.md"
categories = ["external-ffi-bindings"]
Expand All @@ -13,7 +13,7 @@ links = "rb"
repository = "https://github.com/oxidize-rb/rb-sys"

[build-dependencies]
rb-sys-build = { path = "../rb-sys-build", version = "0.9.35" }
rb-sys-build = { path = "../rb-sys-build", version = "0.9.36" }
cc = { version = "1.0", optional = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions examples/rust_reverse/ext/rust_reverse/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/rust_reverse/ext/rust_reverse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "rust-reverse"
version = "0.9.35"
version = "0.9.36"
autotests = false # set true if you want to use "cargo test"
edition = "2018"

[dependencies]
rb-sys = { version = "0.9.35", path = "./../../../../crates/rb-sys", features = ["gem", "global-allocator"] }
rb-sys = { version = "0.9.36", path = "./../../../../crates/rb-sys", features = ["gem", "global-allocator"] }

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion examples/rust_reverse/lib/rust_reverse/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RustReverse
VERSION = "0.9.35"
VERSION = "0.9.36"
end
2 changes: 1 addition & 1 deletion gem/lib/rb_sys/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RbSys
VERSION = "0.9.35"
VERSION = "0.9.36"
end
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ directory for automation purposes):

| Platform | Supported | Docker Image |
| ----------------- | --------- | ---------------------------------------------- |
| x86_64-linux || [`rbsys/x86_64-linux:0.9.35`][docker-hub] |
| x86_64-linux-musl || [`rbsys/x86_64-linux-musl:0.9.35`][docker-hub] |
| aarch64-linux || [`rbsys/aarch64-linux:0.9.35`][docker-hub] |
| arm-linux || [`rbsys/arm-linux:0.9.35`][docker-hub] |
| arm64-darwin || [`rbsys/arm64-darwin:0.9.35`][docker-hub] |
| x64-mingw32 || [`rbsys/x64-mingw32:0.9.35`][docker-hub] |
| x64-mingw-ucrt || [`rbsys/x64-mingw-ucrt:0.9.35`][docker-hub] |
| x86_64-linux || [`rbsys/x86_64-linux:0.9.36`][docker-hub] |
| x86_64-linux-musl || [`rbsys/x86_64-linux-musl:0.9.36`][docker-hub] |
| aarch64-linux || [`rbsys/aarch64-linux:0.9.36`][docker-hub] |
| arm-linux || [`rbsys/arm-linux:0.9.36`][docker-hub] |
| arm64-darwin || [`rbsys/arm64-darwin:0.9.36`][docker-hub] |
| x64-mingw32 || [`rbsys/x64-mingw32:0.9.36`][docker-hub] |
| x64-mingw-ucrt || [`rbsys/x64-mingw-ucrt:0.9.36`][docker-hub] |

## Getting Help

Expand Down

0 comments on commit 576c234

Please sign in to comment.