From 134b53e812d6c5d7601dff23e9a24ef30be89fb1 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 27 Jun 2017 09:41:33 -0600 Subject: [PATCH] Version bump. --- Cargo.toml | 4 ++-- README.md | 2 +- ff_derive/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 294a204c5..c0418b2a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ff" -version = "0.1.0" +version = "0.2.0" authors = ["Sean Bowe "] description = "Library for building and interfacing with finite fields" documentation = "https://github.com/ebfull/ff" @@ -10,4 +10,4 @@ repository = "https://github.com/ebfull/ff" [dependencies] rand = "0.3" -ff_derive = { version = "0.1.0", path = "ff_derive" } +ff_derive = { version = "0.2.0", path = "ff_derive" } diff --git a/README.md b/README.md index 1bfcce4a2..df4bf0329 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Add the `ff` crate to your `Cargo.toml`: ```toml [dependencies] -ff = "0.1" +ff = "0.2" ``` The `ff` crate contains `Field`, `PrimeField`, `PrimeFieldRepr` and `SqrtField` traits. See the **[documentation](http)** for more. diff --git a/ff_derive/Cargo.toml b/ff_derive/Cargo.toml index 54ab98f5a..baba38503 100644 --- a/ff_derive/Cargo.toml +++ b/ff_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ff_derive" -version = "0.1.0" +version = "0.2.0" authors = ["Sean Bowe "] description = "Procedural macro library used to build custom prime field implementations" documentation = "https://github.com/ebfull/ff"