Fix unbumped version number

This is too late for the 0.19.0 release (I missed it because I grepped for
"0.18.", and the version in the README doesn't specify a minor version), but it
will now be in line with the other version strings.

When we put out the 1.0.0-pre.0 release we can change both together (our docs
already say we've released it, because we inserted an extra version, oops).
This commit is contained in:
Henry de Valence 2018-07-27 10:56:02 -07:00
parent 10d8436f0d
commit 59e06c543e

View file

@ -50,7 +50,7 @@ make doc-internal
To import `curve25519-dalek`, add the following to the dependencies section of
your project's `Cargo.toml`:
```toml
curve25519-dalek = "^0.18"
curve25519-dalek = "0.19"
```
Then import the crate as:
```rust,no_run