Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
run: cargo test --verbose --all-features

msrv:
name: Verify MSRV (1.85)
name: Verify MSRV (1.87)
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust Toolchain (1.85)
uses: dtolnay/rust-toolchain@1.85.0
- name: Install Rust Toolchain (1.87)
uses: dtolnay/rust-toolchain@1.87.0

- name: Check
run: cargo check --all-features
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.1] - 2026-08-18

### Fixed

- The `Verify MSRV` CI job now installs Rust 1.87 to match the declared `rust-version = "1.87"` in `Cargo.toml`. The job was previously titled `Verify MSRV (1.85)` and pinned `dtolnay/rust-toolchain@1.85.0`, which caused the check to fail with `rustc 1.85.0 is not supported by the following packages: blstrs_plus@0.9.0 requires rustc 1.87`. The MSRV was raised to 1.87 in 1.1.0 for `blsful 4.0.0` / `blstrs_plus 0.9.0`, but the CI job name and toolchain pin were not updated at that time. The job name is now `Verify MSRV (1.87)` and the toolchain pin is `dtolnay/rust-toolchain@1.87.0`.

### Changed

- Version bumped from `1.2.0` to `1.2.1` (patch: CI fix, no API or MSRV change).

## [1.2.0] - 2026-08-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "multi-sig"
version = "1.2.0"
version = "1.2.1"
edition = "2024"
rust-version = "1.87"
authors = ["Dave Grantham <dwg@linuxprogrammer.org>"]
Expand Down
Loading