Skip to content

Commit 7ac88e1

Browse files
committed
Bump version to 2.0.0
1 parent 09d2c58 commit 7ac88e1

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
Entries are listed in reverse chronological order.
44

5+
## 2.0.0
6+
7+
* Switch from `failure` to `std`-compatible errors via `thiserror`.
8+
* Update `rand`, `curve25519-dalek`, `merlin` versions.
9+
* Adds `no_std` support by @xoloki.
10+
511
## 1.0.4
612

713
* Change doc-include paths to allow compilation on the latest Rust nightly

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
[package]
22
name = "bulletproofs"
3-
version = "1.0.4"
3+
# Before doing a release:
4+
# - update version field
5+
# - update html_root_url
6+
# - ensure yoloproofs was disabled in an atomic (revertable) commit
7+
# - update CHANGELOG
8+
version = "2.0.0"
49
authors = ["Cathie Yun <[email protected]>",
510
"Henry de Valence <[email protected]>",
611
"Oleg Andreev <[email protected]>"]

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#![deny(missing_docs)]
66
#![doc(include = "../README.md")]
77
#![doc(html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png")]
8+
#![doc(html_root_url = "https://docs.rs/bulletproofs/2.0.0")]
89

910
extern crate alloc;
1011

0 commit comments

Comments
 (0)