mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Bump version to 0.6.0 and update CHANGELOG.
This commit is contained in:
parent
d588e2fd18
commit
d9c7f2814e
3 changed files with 10 additions and 2 deletions
|
|
@ -2,6 +2,13 @@
|
||||||
|
|
||||||
Entries are listed in reverse chronological order.
|
Entries are listed in reverse chronological order.
|
||||||
|
|
||||||
|
## 0.6.0
|
||||||
|
|
||||||
|
* Updates `rand_core` version to `0.5`.
|
||||||
|
* Adds `serde` support.
|
||||||
|
* Replaces `clear_on_drop` with `zeroize`.
|
||||||
|
* Use Rust 2018.
|
||||||
|
|
||||||
## 0.5.2
|
## 0.5.2
|
||||||
|
|
||||||
* Implement `Clone` for `StaticSecret`.
|
* Implement `Clone` for `StaticSecret`.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
[package]
|
[package]
|
||||||
name = "x25519-dalek"
|
name = "x25519-dalek"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
version = "0.5.2"
|
# Be sure to update the version in README.md
|
||||||
|
version = "0.6.0"
|
||||||
authors = [
|
authors = [
|
||||||
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
"Isis Lovecruft <isis@patternsinthevoid.net>",
|
||||||
"DebugSteven <debugsteven@gmail.com>",
|
"DebugSteven <debugsteven@gmail.com>",
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,7 @@ To install, add the following to your project's `Cargo.toml`:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies.x25519-dalek]
|
[dependencies.x25519-dalek]
|
||||||
version = "^0.5"
|
version = "0.6"
|
||||||
```
|
```
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue