diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b41ee19b..bef97eb2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.4.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 721f383b..e20b5ce2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.1](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.4.0...v0.4.1) (2024-08-13) + + +### Bug Fixes + +* Put workflow dispatch and push events in a separate group ([#139](https://github.com/crate-crypto/rust-eth-kzg/issues/139)) ([f5f9909](https://github.com/crate-crypto/rust-eth-kzg/commit/f5f9909fc8a0dc20dbeb3c1bb23732bdaa45366f)) + ## [0.4.0](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.3.0...v0.4.0) (2024-08-05) diff --git a/Cargo.toml b/Cargo.toml index 51ad9b8f..e1cc204b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ resolver = "2" authors = ["Kevaundray Wedderburn "] edition = "2021" license = "MIT" -version = "0.4.0" +version = "0.4.1" rust-version = "1.70" repository = "https://github.com/crate-crypto/rust-eth-kzg" @@ -27,12 +27,12 @@ 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.4.0", path = "cryptography/bls12_381" } -polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.4.0", path = "cryptography/polynomial" } -erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.4.0", path = "cryptography/erasure_codes" } -rust_eth_kzg = { version = "0.4.0", path = "eip7594" } -kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.4.0", path = "cryptography/kzg_multi_open" } -c_eth_kzg = { version = "0.4.0", path = "bindings/c" } +bls12_381 = { package = "crate_crypto_internal_eth_kzg_bls12_381", version = "0.4.1", path = "cryptography/bls12_381" } +polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.4.1", path = "cryptography/polynomial" } +erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.4.1", path = "cryptography/erasure_codes" } +rust_eth_kzg = { version = "0.4.1", path = "eip7594" } +kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.4.1", path = "cryptography/kzg_multi_open" } +c_eth_kzg = { version = "0.4.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 27b37c13..624221e8 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.4.0 + 0.4.1 diff --git a/bindings/java/java_code/build.gradle b/bindings/java/java_code/build.gradle index 4457516d..99fa9a45 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.4.0' // x-release-please-version +version = '0.4.1' // x-release-please-version java { diff --git a/bindings/node/package.json b/bindings/node/package.json index 569020f7..fe9b94e4 100644 --- a/bindings/node/package.json +++ b/bindings/node/package.json @@ -1,6 +1,6 @@ { "name": "@crate-crypto/node-eth-kzg", - "version": "0.4.0", + "version": "0.4.1", "publishConfig": { "access": "public" },