File tree 4 files changed +17
-3
lines changed
4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 15
15
- rust : nightly
16
16
env :
17
17
RUSTFMTCHK : false
18
- - rust : 1.41.1
18
+ - rust : 1.48.0
19
19
env :
20
20
RUSTFMTCHK : false
21
21
steps :
27
27
profile : minimal
28
28
toolchain : ${{ matrix.rust }}
29
29
override : true
30
- - run : cargo update -p serde --precise 1.0.152
31
30
- name : Running test script
32
31
env : ${{ matrix.env }}
33
32
run : ./contrib/test.sh
Original file line number Diff line number Diff line change
1
+ # Unreleased
2
+
3
+ - MSRV changed from 1.41.1 to 1.48.0
4
+
1
5
# 0.17.0
2
6
3
7
- add ` list_wallet_dir ` rpc
Original file line number Diff line number Diff line change @@ -47,4 +47,4 @@ The following versions are officially supported and automatically tested:
47
47
* 0.21.0
48
48
49
49
# Minimum Supported Rust Version (MSRV)
50
- This library should always compile with any combination of features on ** Rust 1.41.1 ** .
50
+ This library should always compile with any combination of features on ** Rust 1.48.0 ** .
Original file line number Diff line number Diff line change 1
1
2
2
set -xe
3
3
4
+ MSRV=" 1\.48"
5
+
4
6
# Just echo all the relevant env vars to help debug Travis.
5
7
echo " RUSTFMTCHECK: \" $RUSTFMTCHECK \" "
6
8
echo " BITCOINVERSION: \" $BITCOINVERSION \" "
@@ -11,6 +13,15 @@ if [ -n "$RUSTFMTCHECK" ]; then
11
13
cargo fmt --all -- --check
12
14
fi
13
15
16
+ # Test pinned versions (these are from rust-bitcoin pinning for 1.48).
17
+ if cargo --version | grep ${MSRV} ; then
18
+ cargo update -p log --precise 0.4.18
19
+ cargo update -p serde_json --precise 1.0.99
20
+ cargo update -p serde --precise 1.0.156
21
+ cargo update -p quote --precise 1.0.30
22
+ cargo update -p proc-macro2 --precise 1.0.63
23
+ fi
24
+
14
25
# Integration test.
15
26
if [ -n " $BITCOINVERSION " ]; then
16
27
wget https://bitcoincore.org/bin/bitcoin-core-$BITCOINVERSION /bitcoin-$BITCOINVERSION -x86_64-linux-gnu.tar.gz
You can’t perform that action at this time.
0 commit comments