From a60c1f63a12263316157ad3638784c8dce096a73 Mon Sep 17 00:00:00 2001 From: Zach Dziura Date: Tue, 10 May 2016 18:08:42 -0400 Subject: [PATCH] V1.0 Since the last major version, a bunch of additional trait implementations have been added, including various displays and bitwise operations. The library should be better documented as well. I feel comfortable stabilizing the API for future use. --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c8082ee..3aec427 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pumpkin" -version = "0.3.0" +version = "1.0.0" authors = ["Zach Dziura "] description = "A cryptographically secure prime number generator" repository = "https://github.com/zcdziura/pumpkin" diff --git a/README.md b/README.md index 9d8956b..0679eb8 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ of course your mileage may vary. Add the following to your `Cargo.toml` file: ``` -pumpkin = "0.3.*" +pumpkin = "1.0.*" ``` Note that `pumpkin` requires the `nightly` Rust compiler.