Skip to content

Commit

Permalink
Bump to v0.9.77
Browse files Browse the repository at this point in the history
  • Loading branch information
ianks committed May 10, 2023
1 parent 45ac331 commit 5a203f1
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ inherit_gem:

AllCops:
Exclude:
- examples/rust_reverse/tmp/
- examples/rust_reverse/tmp/**/*
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.76"
version = "0.9.77"
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.76"
version = "0.9.77"
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.76"
version = "0.9.77"
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.57"

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

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

[dependencies]
rb-sys = { version = "0.9.76", path = "./../../../../crates/rb-sys", features = ["global-allocator"] }
rb-sys = { version = "0.9.77", 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.76"
VERSION = "0.9.77"
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.76"
VERSION = "0.9.77"
end
7 changes: 6 additions & 1 deletion rakelib/release.rake
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ namespace :release do
crates = ["rb-sys-build", "rb-sys"]

crates.each do |crate|
sh "cargo publish -p #{crate}"
sh "cargo publish -p #{crate} #{extra_args.join(" ")}"
end

if extra_args.include?("--dry-run")
puts "Skipping gem release because --dry-run was passed"
next
end

Dir.chdir("gem") do
Expand Down
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ directory for automation purposes):

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

## Getting Help
Expand Down

0 comments on commit 5a203f1

Please sign in to comment.