Skip to content

Commit

Permalink
Bump to v0.9.59
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed Feb 1, 2023
1 parent 44d31b7 commit 07a864f
Show file tree
Hide file tree
Showing 10 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 book/src/tutorial/publishing/cross-compilation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use you tool to build your gem, and then exit the container. The gem will be ava

```bash
$ rb-sys-dock -p aarch64-linux
🐳 Entering shell in Docker container "rbsys/aarch64-linux:0.9.58"
🐳 Entering shell in Docker container "rbsys/aarch64-linux:0.9.59"
#...
$ bundle install
# ...
Expand Down
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.58"
version = "0.9.59"
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.58"
version = "0.9.59"
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.58"
version = "0.9.59"
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.51"

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

[features]
default = []
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.58"
version = "0.9.59"
autotests = true # set true if you want to use "cargo test"
edition = "2018"

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

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

## Getting Help
Expand Down

0 comments on commit 07a864f

Please sign in to comment.