diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4019abb..91da415 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,3 +82,13 @@ jobs: - run: cargo +nightly install cargo-msrv --no-default-features - run: cargo +nightly msrv --version - run: cargo +nightly msrv verify --all-features + + docsrs: + name: Check docs-rs build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: dtolnay/rust-toolchain@nightly + - run: cargo doc --all-features --no-deps + env: + RUSTDOCFLAGS: "--cfg docsrs -D warnings" \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b7e81b..f170a6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.13.0] - 2026-03-29 * Removed `asm` feature in favor of automatic backend selection * Bumped MSRV to 1.85.0 (2025-02-20) diff --git a/Cargo.lock b/Cargo.lock index 8c4517d..c62db2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "aho-corasick" @@ -582,7 +582,7 @@ dependencies = [ [[package]] name = "strobe-rs" -version = "0.12.0" +version = "0.13.0" dependencies = [ "bitflags", "bitflags-serde-legacy", diff --git a/Cargo.toml b/Cargo.toml index a5c9504..bde9e31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ repository = "https://github.com/rozbb/strobe-rs" documentation = "https://docs.rs/strobe-rs" description = "An implementation of the Strobe protocol framework in pure Rust" readme = "README.md" -version = "0.12.0" +version = "0.13.0" edition = "2024" authors = ["Michael Rosenberg "] license = "MIT/Apache-2.0"