Skip to content

Commit

Permalink
Bump to v0.9.96
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Apr 18, 2024
1 parent a84f0a1 commit 0ffa27b
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 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.95"
version = "0.9.96"
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.95"
version = "0.9.96"
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.95"
version = "0.9.96"
edition = "2018"
readme = "readme.md"
categories = ["external-ffi-bindings"]
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/oxidize-rb/rb-sys"
rust-version = "1.60"

[build-dependencies]
rb-sys-build = { version = "0.9.95", path = "../rb-sys-build" }
rb-sys-build = { version = "0.9.96", path = "../rb-sys-build" }

[dev-dependencies]
rb-sys = { path = ".", 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.95"
version = "0.9.96"
autotests = true # set true if you want to use "cargo test"
edition = "2018"

[dependencies]
rb-sys = { version = "0.9.95", path = "./../../../../crates/rb-sys", features = [
rb-sys = { version = "0.9.96", path = "./../../../../crates/rb-sys", features = [
"global-allocator",
] }

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.95"
VERSION = "0.9.96"
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.95"
VERSION = "0.9.96"
end
16 changes: 8 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ directory for automation purposes):

| Platform | Supported | Docker Image |
| ------------------ | --------- | ----------------------------------------------- |
| x86_64-linux || [`rbsys/x86_64-linux:0.9.95`][docker-hub] |
| x86_64-linux-musl || [`rbsys/x86_64-linux-musl:0.9.95`][docker-hub] |
| aarch64-linux || [`rbsys/aarch64-linux:0.9.95`][docker-hub] |
| aarch64-linux-musl || [`rbsys/aarch64-linux-musl:0.9.95`][docker-hub] |
| arm-linux || [`rbsys/arm-linux:0.9.95`][docker-hub] |
| arm64-darwin || [`rbsys/arm64-darwin:0.9.95`][docker-hub] |
| x64-mingw32 || [`rbsys/x64-mingw32:0.9.95`][docker-hub] |
| x64-mingw-ucrt || [`rbsys/x64-mingw-ucrt:0.9.95`][docker-hub] |
| x86_64-linux || [`rbsys/x86_64-linux:0.9.96`][docker-hub] |
| x86_64-linux-musl || [`rbsys/x86_64-linux-musl:0.9.96`][docker-hub] |
| aarch64-linux || [`rbsys/aarch64-linux:0.9.96`][docker-hub] |
| aarch64-linux-musl || [`rbsys/aarch64-linux-musl:0.9.96`][docker-hub] |
| arm-linux || [`rbsys/arm-linux:0.9.96`][docker-hub] |
| arm64-darwin || [`rbsys/arm64-darwin:0.9.96`][docker-hub] |
| x64-mingw32 || [`rbsys/x64-mingw32:0.9.96`][docker-hub] |
| x64-mingw-ucrt || [`rbsys/x64-mingw-ucrt:0.9.96`][docker-hub] |
| mswin || not available on Docker |

## Getting Help
Expand Down

0 comments on commit 0ffa27b

Please sign in to comment.