File tree Expand file tree Collapse file tree 7 files changed +20
-11
lines changed Expand file tree Collapse file tree 7 files changed +20
-11
lines changed Original file line number Diff line number Diff line change 7
7
- stable
8
8
- beta
9
9
- nightly
10
- - 1.22 .0
10
+ - 1.29 .0
11
11
distro : bionic
12
12
os :
13
13
- linux
@@ -22,11 +22,11 @@ addons:
22
22
23
23
matrix :
24
24
exclude :
25
- - rust : 1.22 .0
25
+ - rust : 1.29 .0
26
26
os : windows
27
27
28
28
script :
29
- - if [ "$TRAVIS_RUST_VERSION" == "1.22 .0" ]; then
29
+ - if [ "$TRAVIS_RUST_VERSION" == "1.29 .0" ]; then
30
30
cargo generate-lockfile --verbose && cargo update -p cc --precise "1.0.41" --verbose;
31
31
fi
32
32
- cargo build --verbose --no-default-features
@@ -43,7 +43,7 @@ script:
43
43
- cargo test --verbose --features="rand rand-std"
44
44
- cargo test --verbose --features="rand serde"
45
45
- cargo test --verbose --features="rand serde recovery endomorphism"
46
- - if [ ${TRAVIS_RUST_VERSION} != "1.22 .0" ]; then
46
+ - if [ ${TRAVIS_RUST_VERSION} != "1.29 .0" ]; then
47
47
cargo test --verbose --features global-context;
48
48
fi
49
49
- cargo build --verbose
Original file line number Diff line number Diff line change 1
1
2
+ # 0.19.0 - 2020-08-27
3
+
4
+ * ** Update MSRV to 1.29.0**
5
+
2
6
# 0.18.0 - 2020-08-26
3
7
4
8
* Add feature-gated ` bitcoin_hashes ` dependency and [ ` ThirtyTwoByteHash ` trait] ( https://github.com/rust-bitcoin/rust-secp256k1/pull/206/ )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " secp256k1"
4
- version = " 0.18 .0"
4
+ version = " 0.19 .0"
5
5
authors = [ " Dawid Ciężarkiewicz <dpc@ucore.info>" ,
6
6
" Andrew Poelstra <apoelstra@wpsoftware.net>" ]
7
7
license = " CC0-1.0"
@@ -39,20 +39,20 @@ external-symbols = ["secp256k1-sys/external-symbols"]
39
39
fuzztarget = [" secp256k1-sys/fuzztarget" ]
40
40
41
41
[dependencies ]
42
- secp256k1-sys = { version = " 0.2 .0" , default-features = false , path = " ./secp256k1-sys" }
42
+ secp256k1-sys = { version = " 0.3 .0" , default-features = false , path = " ./secp256k1-sys" }
43
43
44
44
[dev-dependencies ]
45
45
rand = " 0.6"
46
46
rand_core = " 0.4"
47
47
serde_test = " 1.0"
48
- bitcoin_hashes = " 0.7 "
48
+ bitcoin_hashes = " 0.9 "
49
49
50
50
[target .wasm32-unknown-unknown .dev-dependencies ]
51
51
wasm-bindgen-test = " 0.3"
52
52
rand = { version = " 0.6" , features = [" wasm-bindgen" ] }
53
53
54
54
[dependencies .bitcoin_hashes ]
55
- version = " 0.7 "
55
+ version = " 0.9 "
56
56
optional = true
57
57
58
58
[dependencies .rand ]
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ Contributions to this library are welcome. A few guidelines:
25
25
## A note on Rust 1.22 support
26
26
27
27
The build dependency ` cc ` might require a more recent version of the Rust compiler.
28
- To ensure compilation with Rust 1.22 .0, pin its version in your ` Cargo.lock `
28
+ To ensure compilation with Rust 1.29 .0, pin its version in your ` Cargo.lock `
29
29
with ` cargo update -p cc --precise 1.0.41 ` . If you're using ` secp256k1 ` in a library,
30
30
to make sure it compiles in CI, you'll need to generate a lockfile first.
31
31
Example for Travis CI:
32
32
``` yml
33
33
before_script :
34
- - if [ "$TRAVIS_RUST_VERSION" == "1.22 .0" ]; then
34
+ - if [ "$TRAVIS_RUST_VERSION" == "1.29 .0" ]; then
35
35
cargo generate-lockfile --verbose && cargo update -p cc --precise "1.0.41" --verbose;
36
36
fi
37
37
` ` `
Original file line number Diff line number Diff line change 1
1
2
+ # 0.3.0 - 2020-08-27
3
+
4
+ * ** Update MSRV to 1.29.0**
5
+
2
6
# 0.2.0 - 2020-08-26
3
7
4
8
* Update upstream to ` 670cdd3f8be25f81472b2d16dcd228b0d24a5c45 `
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " secp256k1-sys"
3
- version = " 0.2 .0"
3
+ version = " 0.3 .0"
4
4
authors = [ " Dawid Ciężarkiewicz <dpc@ucore.info>" ,
5
5
" Andrew Poelstra <apoelstra@wpsoftware.net>" ,
6
6
" Steven Roose <steven@stevenroose.org>" ]
Original file line number Diff line number Diff line change @@ -506,6 +506,7 @@ impl Message {
506
506
/// `bitcoin_hashes` to be enabled.
507
507
/// ```rust
508
508
/// extern crate bitcoin_hashes;
509
+ /// # extern crate secp256k1;
509
510
/// use secp256k1::Message;
510
511
/// use bitcoin_hashes::sha256;
511
512
/// use bitcoin_hashes::Hash;
You can’t perform that action at this time.
0 commit comments