Skip to content

Commit

Permalink
chore: Release (0.5.3) (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray authored Feb 2, 2025
1 parent 4330783 commit 63d469c
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.2"
".": "0.5.3"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.5.3](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.5.2...v0.5.3) (2025-02-02)


### Features

* Add batch normalization tests ([4a1920a](https://github.com/crate-crypto/rust-eth-kzg/commit/4a1920ac3b65e9cd1478d6695b1d7520bf0946bd))


### Bug Fixes

* Trigger build ([4330783](https://github.com/crate-crypto/rust-eth-kzg/commit/433078342e68db5bf113966dc57d944038707ad9))

## [0.5.2](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.5.1...v0.5.2) (2024-09-24)


Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ resolver = "2"
authors = ["Kevaundray Wedderburn <[email protected]>"]
edition = "2021"
license = "MIT"
version = "0.5.2"
version = "0.5.3"
rust-version = "1.70"
repository = "https://github.com/crate-crypto/rust-eth-kzg"

[workspace.dependencies]
# 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.2", path = "cryptography/bls12_381" }
polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.2", path = "cryptography/polynomial" }
erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.2", path = "cryptography/erasure_codes" }
rust_eth_kzg = { version = "0.5.2", path = "eip7594" }
maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.2", path = "maybe_rayon" }
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.2", path = "cryptography/kzg_multi_open" }
c_eth_kzg = { version = "0.5.2", path = "bindings/c" }
bls12_381 = { package = "crate_crypto_internal_eth_kzg_bls12_381", version = "0.5.3", path = "cryptography/bls12_381" }
polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.3", path = "cryptography/polynomial" }
erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.3", path = "cryptography/erasure_codes" }
rust_eth_kzg = { version = "0.5.3", path = "eip7594" }
maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.3", path = "maybe_rayon" }
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.3", path = "cryptography/kzg_multi_open" }
c_eth_kzg = { version = "0.5.3", path = "bindings/c" }
hex = "0.4.3"
rayon = "1.10.0"

Expand Down
2 changes: 1 addition & 1 deletion bindings/csharp/csharp_code/EthKZG.bindings/EthKZG.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/crate-crypto/rust-eth-kzg</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>0.5.2</Version>
<Version>0.5.3</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion bindings/java/java_code/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = 'io.github.crate-crypto'
version = '0.5.2' // x-release-please-version
version = '0.5.3' // x-release-please-version


java {
Expand Down
2 changes: 1 addition & 1 deletion bindings/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crate-crypto/node-eth-kzg",
"version": "0.5.2",
"version": "0.5.3",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit 63d469c

Please sign in to comment.