From c94dc6f858756157b3273c7451e1e667cfb484c9 Mon Sep 17 00:00:00 2001 From: Robin Salen <30937548+Nashtare@users.noreply.github.com> Date: Tue, 20 Feb 2024 14:50:43 -0500 Subject: [PATCH] Version bump pre-release (#1536) * Bump versions * Bump hashbrown and ahash accordingly * Update changelog --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 4 ++-- field/Cargo.toml | 2 +- maybe_rayon/Cargo.toml | 2 +- plonky2/Cargo.toml | 2 +- starky/Cargo.toml | 2 +- 6 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..e327ab77 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.2.0] - 2024-02-20 +* Initial CHANGELOG tracking. diff --git a/Cargo.toml b/Cargo.toml index ae7534b5..6b9de8db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,9 @@ members = ["field", "maybe_rayon", "plonky2", "starky", "util"] resolver = "2" [workspace.dependencies] -ahash = { version = "0.8.3", default-features = false, features = ["compile-time-rng"] } # NOTE: Be sure to keep this version the same as the dependency in `hashbrown`. +ahash = { version = "0.8.7", default-features = false, features = ["compile-time-rng"] } # NOTE: Be sure to keep this version the same as the dependency in `hashbrown`. anyhow = { version = "1.0.40", default-features = false } -hashbrown = { version = "0.14.0", default-features = false, features = ["ahash", "serde"] } # NOTE: When upgrading, see `ahash` dependency. +hashbrown = { version = "0.14.3", default-features = false, features = ["ahash", "serde"] } # NOTE: When upgrading, see `ahash` dependency. itertools = { version = "0.11.0", default-features = false } log = { version = "0.4.14", default-features = false } num = { version = "0.4", default-features = false, features = ["rand"] } diff --git a/field/Cargo.toml b/field/Cargo.toml index 86c681a7..2f893ea5 100644 --- a/field/Cargo.toml +++ b/field/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plonky2_field" description = "Finite field arithmetic" -version = "0.1.1" +version = "0.2.0" authors = ["Daniel Lubarov ", "William Borgeaud ", "Jacqueline Nabaglo ", "Hamish Ivey-Law "] edition.workspace = true license.workspace = true diff --git a/maybe_rayon/Cargo.toml b/maybe_rayon/Cargo.toml index 59e09349..ec1987ed 100644 --- a/maybe_rayon/Cargo.toml +++ b/maybe_rayon/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plonky2_maybe_rayon" description = "Feature-gated wrapper around rayon" -version = "0.1.1" +version = "0.2.0" edition.workspace = true license.workspace = true homepage.workspace = true diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index 2185462b..ca5d63fb 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plonky2" description = "Recursive SNARKs based on PLONK and FRI" -version = "0.1.4" +version = "0.2.0" authors = ["Daniel Lubarov ", "William Borgeaud ", "Nicholas Ward "] readme = "README.md" edition.workspace = true diff --git a/starky/Cargo.toml b/starky/Cargo.toml index 6ad554f9..9c9df10d 100644 --- a/starky/Cargo.toml +++ b/starky/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "starky" description = "Implementation of STARKs" -version = "0.1.2" +version = "0.2.0" authors = ["Daniel Lubarov ", "William Borgeaud "] readme = "README.md" edition.workspace = true