diff --git a/.github/actions/rust-build-test/action.yml b/.github/actions/rust-build-test/action.yml index 693f033..6fd2b42 100644 --- a/.github/actions/rust-build-test/action.yml +++ b/.github/actions/rust-build-test/action.yml @@ -27,6 +27,6 @@ runs: cargo -V if [[ ${{ inputs.target }} == 'x86_64-unknown-linux-gnu' ]]; then cargo test --verbose; - cargo test --release --verbose + cargo test --release --verbose; fi 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 "]