From 69224b0cb279a3fbcd7ecb16720fb75d9a2b0fe1 Mon Sep 17 00:00:00 2001 From: Abhijit Gadgil Date: Wed, 8 Nov 2023 10:16:04 +0530 Subject: [PATCH] experiment: Testing `macos` build and new crate version. --- .github/actions/rust-build-test/action.yml | 6 ++---- sctp-rs/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/actions/rust-build-test/action.yml b/.github/actions/rust-build-test/action.yml index 693f033..25b8da6 100644 --- a/.github/actions/rust-build-test/action.yml +++ b/.github/actions/rust-build-test/action.yml @@ -25,8 +25,6 @@ runs: - run: | rustc -Vv cargo -V - if [[ ${{ inputs.target }} == 'x86_64-unknown-linux-gnu' ]]; then - cargo test --verbose; - cargo test --release --verbose - fi + cargo test --verbose; + cargo test --release --verbose shell: bash diff --git a/sctp-rs/Cargo.toml b/sctp-rs/Cargo.toml index 55098bc..66e6512 100644 --- a/sctp-rs/Cargo.toml +++ b/sctp-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sctp-rs" -version = "0.3.0" +version = "0.3.1" edition = "2018" description = "Idiomatic Rust APIs for Linux SCTP Stack." authors = [ "Abhijit Gadgil "]