Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 701daf6

Browse files
committed
Merge #165: Fix missed mentions of 1.29
1fd0050 Update test script post MSRV bump (Tobin C. Harding) 0824ba1 Update MSRV in crate description (Tobin C. Harding) Pull request description: Oops, ``` $ cargo search bitcoin-hashes bitcoin_hashes = "0.11.0" # Hash functions used by rust-bitcoin which support rustc 1.29.0 ``` - Patch one fixes the crate description - Patch two clears a couple of mentions in the test script We could almost do a point release if we (*cough* apoelstra ) were keen, I'll raise the 'bump version' PR if anyone agrees to make him do the work :) ACKs for top commit: apoelstra: ACK 1fd0050 Tree-SHA512: ec88cd0c1732a1fd876e1156f61aa9ade44c7b417395d1ef4eafe88a28887218d8c1ecebd1450a9e0f735f9b2647047c9e330af4fcc325b029848e89a53e6687
2 parents ba4cebf + 1fd0050 commit 701daf6

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "bitcoin_hashes"
33
version = "0.11.0"
44
authors = ["Andrew Poelstra <[email protected]>"]
55
license = "CC0-1.0"
6-
description = "Hash functions used by rust-bitcoin which support rustc 1.29.0"
6+
description = "Hash functions used by rust-bitcoin which support rustc 1.41.1"
77
homepage = "https://github.com/rust-bitcoin/bitcoin_hashes/"
88
repository = "https://github.com/rust-bitcoin/bitcoin_hashes/"
99
documentation = "https://docs.rs/bitcoin_hashes/"

contrib/test.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/bin/sh -ex
22

3-
# TODO: Add core2 here once we bump MSRV past 1.29
4-
FEATURES="serde serde-std std"
3+
FEATURES="serde serde-std std core2"
54

65
if [ "$DO_ALLOC_TESTS" = true ]; then
76
FEATURES="$FEATURES alloc"
@@ -43,8 +42,7 @@ if [ "$DO_FEATURE_MATRIX" = true ]; then
4342
done
4443

4544
# Other combos
46-
# TODO: Add this test once we bump MSRV past 1.29
47-
# cargo test --all --no-default-features --features="std,schemars"
45+
cargo test --all --no-default-features --features="std,schemars"
4846
fi
4947

5048
if [ "$DO_SCHEMARS_TESTS" = true ]; then

0 commit comments

Comments
 (0)