From 2e8c52a63d9c3f85e18d650a71cf2b28b5536b8a Mon Sep 17 00:00:00 2001 From: kevaundray Date: Tue, 27 Aug 2024 12:05:54 +0100 Subject: [PATCH] chore: Release (0.5.1) --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.toml | 16 ++++++++-------- .../csharp_code/EthKZG.bindings/EthKZG.csproj | 2 +- bindings/java/java_code/build.gradle | 2 +- bindings/node/package.json | 2 +- 6 files changed, 19 insertions(+), 12 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 176120ea..4701c250 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.0" + ".": "0.5.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e9b396..9124c5f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.1](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.5.0...v0.5.1) (2024-08-27) + + +### Bug Fixes + +* Publish maybe_rayon when releasing crates ([#244](https://github.com/crate-crypto/rust-eth-kzg/issues/244)) ([ad9f273](https://github.com/crate-crypto/rust-eth-kzg/commit/ad9f273a26d32b29b5b6969632e8aaa99f0549b7)) + ## [0.5.0](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.4.1...v0.5.0) (2024-08-27) diff --git a/Cargo.toml b/Cargo.toml index b57e524a..2d7b419f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ resolver = "2" authors = ["Kevaundray Wedderburn "] edition = "2021" license = "MIT" -version = "0.5.0" +version = "0.5.1" rust-version = "1.70" repository = "https://github.com/crate-crypto/rust-eth-kzg" @@ -28,13 +28,13 @@ repository = "https://github.com/crate-crypto/rust-eth-kzg" # These names are essentially a way to achieve scoping when we publish to crates.io # Ideally we don't publish bls12_381 and polynomial, but crates.io requires # all dependencies to be published and not local. -bls12_381 = { package = "crate_crypto_internal_eth_kzg_bls12_381", version = "0.5.0", path = "cryptography/bls12_381" } -polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.0", path = "cryptography/polynomial" } -erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.0", path = "cryptography/erasure_codes" } -rust_eth_kzg = { version = "0.5.0", path = "eip7594" } -maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.0", path = "maybe_rayon" } -kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.0", path = "cryptography/kzg_multi_open" } -c_eth_kzg = { version = "0.5.0", path = "bindings/c" } +bls12_381 = { package = "crate_crypto_internal_eth_kzg_bls12_381", version = "0.5.1", path = "cryptography/bls12_381" } +polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.1", path = "cryptography/polynomial" } +erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.1", path = "cryptography/erasure_codes" } +rust_eth_kzg = { version = "0.5.1", path = "eip7594" } +maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.1", path = "maybe_rayon" } +kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.1", path = "cryptography/kzg_multi_open" } +c_eth_kzg = { version = "0.5.1", path = "bindings/c" } hex = "0.4.3" rayon = "1.10.0" diff --git a/bindings/csharp/csharp_code/EthKZG.bindings/EthKZG.csproj b/bindings/csharp/csharp_code/EthKZG.bindings/EthKZG.csproj index 2fbdd134..f68b48cd 100644 --- a/bindings/csharp/csharp_code/EthKZG.bindings/EthKZG.csproj +++ b/bindings/csharp/csharp_code/EthKZG.bindings/EthKZG.csproj @@ -22,7 +22,7 @@ git https://github.com/crate-crypto/rust-eth-kzg snupkg - 0.5.0 + 0.5.1 diff --git a/bindings/java/java_code/build.gradle b/bindings/java/java_code/build.gradle index aa72762d..7c9da707 100644 --- a/bindings/java/java_code/build.gradle +++ b/bindings/java/java_code/build.gradle @@ -8,7 +8,7 @@ plugins { } group = 'io.github.crate-crypto' -version = '0.5.0' // x-release-please-version +version = '0.5.1' // x-release-please-version java { diff --git a/bindings/node/package.json b/bindings/node/package.json index 162b8143..59040abf 100644 --- a/bindings/node/package.json +++ b/bindings/node/package.json @@ -1,6 +1,6 @@ { "name": "@crate-crypto/node-eth-kzg", - "version": "0.5.0", + "version": "0.5.1", "publishConfig": { "access": "public" },