From 10d8436f0d1b3e3c213a71773bfb5a11e41d7666 Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Thu, 13 Sep 2018 23:35:57 -0700 Subject: [PATCH 1/3] Update packed_simd version --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0976cdf..a346376 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -48,7 +48,7 @@ generic-array = "0.9" clear_on_drop = "=0.2.3" subtle = { version = "0.7", features = ["generic-impls"], default-features = false } serde = { version = "1.0", optional = true } -packed_simd = { version = "0.1.0", features = ["into_bits"], optional = true } +packed_simd = { version = "0.3.0", features = ["into_bits"], optional = true } [build-dependencies] rand = { version = "0.5", default-features = false } @@ -58,7 +58,7 @@ generic-array = "0.9" clear_on_drop = "=0.2.3" subtle = { version = "0.7", features = ["generic-impls"], default-features = false } serde = { version = "1.0", optional = true } -packed_simd = { version = "0.1.0", features = ["into_bits"], optional = true } +packed_simd = { version = "0.3.0", features = ["into_bits"], optional = true } [features] nightly = ["subtle/nightly", "clear_on_drop/nightly"] From 59e06c543e7e865be5aa5bdf1b1e84b0ba74598b Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Fri, 27 Jul 2018 10:56:02 -0700 Subject: [PATCH 2/3] 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). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f241f81..e0ff3c3 100644 --- a/README.md +++ b/README.md @@ -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 From f95806e00dc29618d574bd2ef4ec59837877e0c4 Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Mon, 17 Sep 2018 12:33:24 -0700 Subject: [PATCH 3/3] Bump version to 0.19.1 This fixes the AVX2 build on nightly. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a346376..69b45b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.19.0" +version = "0.19.1" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md"