Skip to content

Commit 4bcb404

Browse files
committed
Merge #156: Pin version of build dependency cc to <1.0.42
845bff2 Bump version to 0.15.4 (Steven Roose) 07ef3a1 Pin version of build dependency cc to <1.0.42 (Steven Roose) Pull request description: Version 1.0.42 broke compatibility with rustc 1.22.0. ACKs for top commit: jonasnick: ACK 845bff2 Tree-SHA512: 21161e6e85494d064b45b9800baa0355784e3b47772dff2716f049b1b15c047832ceb756b2031ef73374952c21aa04a8852a333eb3edbb73f5608c7ce8344c12
2 parents 4e69dcc + 845bff2 commit 4bcb404

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2+
# 0.15.4 - 2019-09-06
3+
4+
- Add `rand-std` feature.
5+
- Pin the cc build-dep version to `< 1.0.42` to remain
6+
compatible with rustc 1.22.0.
7+
- Changed all `as_*ptr()` to a new safer `CPtr` trait
8+
19
# 0.15.2 - 2019-08-08
210

311
- Add feature `lowmemory` that reduces the EC mult window size to require

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "secp256k1"
4-
version = "0.15.3"
4+
version = "0.15.4"
55
authors = [ "Dawid Ciężarkiewicz <dpc@ucore.info>",
66
"Andrew Poelstra <apoelstra@wpsoftware.net>" ]
77
license = "CC0-1.0"
@@ -19,7 +19,7 @@ links = "secp256k1"
1919
features = [ "rand", "serde", "recovery", "endomorphism" ]
2020

2121
[build-dependencies]
22-
cc = ">= 1.0.28"
22+
cc = ">= 1.0.28, < 1.0.42"
2323

2424
[lib]
2525
name = "secp256k1"

0 commit comments

Comments
 (0)