diff --git a/field/Cargo.toml b/field/Cargo.toml index e61f4e8971..e13f49efd2 100644 --- a/field/Cargo.toml +++ b/field/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plonky2_field" description = "Finite field arithmetic" -version = "0.2.2" +version = "1.0.0" authors = ["Daniel Lubarov ", "William Borgeaud ", "Jacqueline Nabaglo ", "Hamish Ivey-Law "] edition.workspace = true license.workspace = true @@ -20,7 +20,7 @@ static_assertions = { workspace = true } unroll = { workspace = true } # Local dependencies -plonky2_util = { version = "0.2.0", path = "../util", default-features = false } +plonky2_util = { version = "1.0.0", path = "../util", default-features = false } # Display math equations properly in documentation diff --git a/maybe_rayon/Cargo.toml b/maybe_rayon/Cargo.toml index ec1987ed4b..76656325e5 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.2.0" +version = "1.0.0" edition.workspace = true license.workspace = true homepage.workspace = true diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index 4a6790f856..90a1cadc5b 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.2.2" +version = "1.0.0" authors = ["Daniel Lubarov ", "William Borgeaud ", "Nicholas Ward "] readme = "README.md" edition.workspace = true @@ -34,9 +34,9 @@ unroll = { workspace = true } web-time = { version = "1.0.0", optional = true } # Local dependencies -plonky2_field = { version = "0.2.2", path = "../field", default-features = false } -plonky2_maybe_rayon = { version = "0.2.0", path = "../maybe_rayon", default-features = false } -plonky2_util = { version = "0.2.0", path = "../util", default-features = false } +plonky2_field = { version = "1.0.0", path = "../field", default-features = false } +plonky2_maybe_rayon = { version = "1.0.0", path = "../maybe_rayon", default-features = false } +plonky2_util = { version = "1.0.0", path = "../util", default-features = false } [target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies] diff --git a/starky/Cargo.toml b/starky/Cargo.toml index 31bd5e6e9b..cd8b7d8fe7 100644 --- a/starky/Cargo.toml +++ b/starky/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "starky" description = "Implementation of STARKs" -version = "0.4.0" +version = "1.0.0" authors = ["Daniel Lubarov ", "William Borgeaud "] readme = "README.md" edition.workspace = true @@ -27,9 +27,9 @@ serde = { workspace = true, features = ["rc"] } num-bigint = { version = "0.4.3", default-features = false } # Local dependencies -plonky2 = { version = "0.2.2", path = "../plonky2", default-features = false } -plonky2_maybe_rayon = { version = "0.2.0", path = "../maybe_rayon", default-features = false } -plonky2_util = { version = "0.2.0", path = "../util", default-features = false } +plonky2 = { version = "1.0.0", path = "../plonky2", default-features = false } +plonky2_maybe_rayon = { version = "1.0.0", path = "../maybe_rayon", default-features = false } +plonky2_util = { version = "1.0.0", path = "../util", default-features = false } [dev-dependencies] env_logger = { version = "0.9.0", default-features = false } diff --git a/util/Cargo.toml b/util/Cargo.toml index 441111afe6..67167977f0 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "plonky2_util" description = "Utilities used by Plonky2" -version = "0.2.0" +version = "1.0.0" license = "MIT OR Apache-2.0" edition = "2021"