Skip to content

Commit 27760b1

Browse files
authored
chore: Release (0.5.1) (#245)
1 parent ad9f273 commit 27760b1

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.0"
2+
".": "0.5.1"
33
}

CHANGELOG.md

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

3+
## [0.5.1](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.5.0...v0.5.1) (2024-08-27)
4+
5+
6+
### Bug Fixes
7+
8+
* 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))
9+
310
## [0.5.0](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.4.1...v0.5.0) (2024-08-27)
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.0"
23+
version = "0.5.1"
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.0", path = "cryptography/bls12_381" }
32-
polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.0", path = "cryptography/polynomial" }
33-
erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.0", path = "cryptography/erasure_codes" }
34-
rust_eth_kzg = { version = "0.5.0", path = "eip7594" }
35-
maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.0", path = "maybe_rayon" }
36-
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.0", path = "cryptography/kzg_multi_open" }
37-
c_eth_kzg = { version = "0.5.0", path = "bindings/c" }
31+
bls12_381 = { package = "crate_crypto_internal_eth_kzg_bls12_381", version = "0.5.1", path = "cryptography/bls12_381" }
32+
polynomial = { package = "crate_crypto_internal_eth_kzg_polynomial", version = "0.5.1", path = "cryptography/polynomial" }
33+
erasure_codes = { package = "crate_crypto_internal_eth_kzg_erasure_codes", version = "0.5.1", path = "cryptography/erasure_codes" }
34+
rust_eth_kzg = { version = "0.5.1", path = "eip7594" }
35+
maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.5.1", path = "maybe_rayon" }
36+
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.5.1", path = "cryptography/kzg_multi_open" }
37+
c_eth_kzg = { version = "0.5.1", 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.0</Version>
25+
<Version>0.5.1</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.0' // x-release-please-version
11+
version = '0.5.1' // 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.0",
3+
"version": "0.5.1",
44
"publishConfig": {
55
"access": "public"
66
},

0 commit comments

Comments
 (0)