Skip to content

Commit 66c4441

Browse files
committed
chore: Release (0.5.4)
1 parent e8f5f21 commit 66c4441

File tree

6 files changed

+19
-12
lines changed

6 files changed

+19
-12
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.5.3"
2+
".": "0.5.4"
33
}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.5.4](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.5.3...v0.5.4) (2025-02-21)
4+
5+
6+
### Features
7+
8+
* Bump minor-- add compute_cells for rust impl ([e8f5f21](https://github.com/crate-crypto/rust-eth-kzg/commit/e8f5f212b0a81466d288fe18d7a7232b2eea4972))
9+
310
## [0.5.3](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.5.2...v0.5.3) (2025-02-02)
411

512

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ resolver = "2"
2020
authors = ["Kevaundray Wedderburn <kev@the.dev>"]
2121
edition = "2021"
2222
license = "MIT"
23-
version = "0.5.3"
23+
version = "0.5.4"
2424
rust-version = "1.70"
2525
repository = "https://github.com/crate-crypto/rust-eth-kzg"
2626

2727
[workspace.dependencies]
2828
# These names are essentially a way to achieve scoping when we publish to crates.io
2929
# Ideally we don't publish bls12_381 and polynomial, but crates.io requires
3030
# all dependencies to be published and not local.
31-
bls12_381 = { package = "crate_crypto_internal_eth_kzg_bls12_381", version = "0.5.3", path = "cryptography/bls12_381" }
32-
polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.3", path = "cryptography/polynomial" }
33-
erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.3", path = "cryptography/erasure_codes" }
34-
rust_eth_kzg = { version = "0.5.3", path = "eip7594" }
35-
maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.3", path = "maybe_rayon" }
36-
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.3", path = "cryptography/kzg_multi_open" }
37-
c_eth_kzg = { version = "0.5.3", path = "bindings/c" }
31+
bls12_381 = { package = "crate_crypto_internal_eth_kzg_bls12_381", version = "0.5.4", path = "cryptography/bls12_381" }
32+
polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.4", path = "cryptography/polynomial" }
33+
erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.4", path = "cryptography/erasure_codes" }
34+
rust_eth_kzg = { version = "0.5.4", path = "eip7594" }
35+
maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.4", path = "maybe_rayon" }
36+
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.4", path = "cryptography/kzg_multi_open" }
37+
c_eth_kzg = { version = "0.5.4", path = "bindings/c" }
3838
hex = "0.4.3"
3939
rayon = "1.10.0"
4040

bindings/csharp/csharp_code/EthKZG.bindings/EthKZG.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<RepositoryType>git</RepositoryType>
2323
<RepositoryUrl>https://github.com/crate-crypto/rust-eth-kzg</RepositoryUrl>
2424
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
25-
<Version>0.5.3</Version>
25+
<Version>0.5.4</Version>
2626
</PropertyGroup>
2727

2828
<ItemGroup>

bindings/java/java_code/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = 'io.github.crate-crypto'
11-
version = '0.5.3' // x-release-please-version
11+
version = '0.5.4' // x-release-please-version
1212

1313

1414
java {

bindings/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crate-crypto/node-eth-kzg",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"publishConfig": {
55
"access": "public"
66
},

0 commit comments

Comments
 (0)