Skip to content

Commit

Permalink
Bump to v0.9.32
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Oct 18, 2022
1 parent 0e95feb commit e7e9e42
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.31"
version = "0.9.32"
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.31"
version = "0.9.32"
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.31"
version = "0.9.32"
edition = "2018"
readme = "readme.md"
categories = ["external-ffi-bindings"]
Expand All @@ -15,7 +15,7 @@ repository = "https://github.com/oxidize-rb/rb-sys"
[build-dependencies]
bindgen = { version = "0.60", default-features = false, features = ["runtime"] }
linkify = "0.9"
rb-sys-build = { path = "../rb-sys-build", version = "0.9.31" }
rb-sys-build = { path = "../rb-sys-build", version = "0.9.32" }
cc = { version = "1.0", optional = true }
shell-words = { version = "1.1", optional = true }

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.31"
version = "0.9.32"
autotests = false # set true if you want to use "cargo test"
edition = "2018"

[dependencies]
rb-sys = { version = "0.9.31", path = "./../../../../crates/rb-sys", features = ["gem", "global-allocator"] }
rb-sys = { version = "0.9.32", 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.31"
VERSION = "0.9.32"
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.31"
VERSION = "0.9.32"
end
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ directory for automation purposes):

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

## Getting Help

Expand Down

0 comments on commit e7e9e42

Please sign in to comment.