Skip to content

Commit

Permalink
Merge #55: Bump MSRV to Rust 1.56.1
Browse files Browse the repository at this point in the history
fb0a1d6 Bump MSRV to Rust 1.56.1 (Tobin C. Harding)

Pull request description:

  As we are doing in other crates bump the MSRV to Rust v1.56.1

ACKs for top commit:
  Kixunil:
    ACK fb0a1d6
  apoelstra:
    ACK fb0a1d6

Tree-SHA512: 49c2b78dc386457a5f9d89a56a2580d5a6100fb76852e906fe041ef22bc52ae60e708bba786b811a69c02a74193153f694d9c24725282eedab9fb8ef7a1fe7ff
  • Loading branch information
apoelstra committed Dec 6, 2023
2 parents 7c6a77b + fb0a1d6 commit eacd8b8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ jobs:
run: ./contrib/test.sh

MSRV:
name: Test - 1.48.0 toolchain
name: Test - 1.56.1 toolchain
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout Crate
uses: actions/checkout@v3
- name: Checkout Toolchain
uses: dtolnay/rust-toolchain@1.48.0
uses: dtolnay/rust-toolchain@1.56.1
- name: Running test script
env:
DO_FEATURE_MATRIX: true
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# unrelease

- Bump MSRV to 1.56.1

# 0.1.1 - 2023-07-19

- [Add `test_hex_unwrap`](https://github.com/rust-bitcoin/hex-conservative/pull/24) hex parsing macro for test usage.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ General purpose hex encoding/decoding library with a conservative MSRV and depen

## Minimum Supported Rust Version (MSRV)

This library should compile with almost any combination of features on **Rust 1.48.0**, however we
This library should compile with almost any combination of features on **Rust 1.56.1**, however we
reserve the right to use features to guard compiler specific code so `--all-features` may not work
using the MSRV toolchain.

Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.48.0"
msrv = "1.56.1"

0 comments on commit eacd8b8

Please sign in to comment.