From bd6f36398f5bd9e7faa968721fc68c66929375b7 Mon Sep 17 00:00:00 2001 From: Marcin Date: Thu, 20 Oct 2022 16:42:51 +0200 Subject: [PATCH 1/4] Release 0.4.0-alpha --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4ddcd22..52454fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ark-std" -version = "0.3.0" +version = "0.4.0-alpha" authors = [ "arkworks contributors" ] description = "A library for no_std compatibility" homepage = "https://arkworks.rs" From eb2361f717f03963037d431d445c60329db11de1 Mon Sep 17 00:00:00 2001 From: Marcin Date: Fri, 21 Oct 2022 08:54:58 +0200 Subject: [PATCH 2/4] Update CHANGELOG to reflect a new version --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d0a8d1..0a70b41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ### Breaking changes +### Features + +### Improvements + +### Bug fixes + +## v0.4.0 + +### Breaking changes + - [\#35](https://github.com/arkworks-rs/utils/pull/35) Change `test_rng` to return `impl Rng`, and make the output randomized by default when the `std` feature is set. Introduces a `DETERMINISTIC_TEST_RNG` environment variable that forces the old deterministic behavior when `DETERMINISTIC_TEST_RNG=1` is set. ### Features From 857e09f02c8ce4e68ea00bc65e3615533bded90b Mon Sep 17 00:00:00 2001 From: mmagician Date: Tue, 17 Jan 2023 11:23:10 +0100 Subject: [PATCH 3/4] update repository link --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 52454fa..8efce4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.4.0-alpha" authors = [ "arkworks contributors" ] description = "A library for no_std compatibility" homepage = "https://arkworks.rs" -repository = "https://github.com/arkworks-rs/utils" +repository = "https://github.com/arkworks-rs/std" documentation = "https://docs.rs/ark-std/" keywords = [ "no_std" ] categories = ["cryptography"] From 6b7081d0162f1d0b8d4934538a9916f03d9554b1 Mon Sep 17 00:00:00 2001 From: mmagician Date: Tue, 17 Jan 2023 11:25:59 +0100 Subject: [PATCH 4/4] chore: Release ark-std version 0.4.0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8efce4b..96c9237 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ark-std" -version = "0.4.0-alpha" +version = "0.4.0" authors = [ "arkworks contributors" ] description = "A library for no_std compatibility" homepage = "https://arkworks.rs"