Skip to content

Commit

Permalink
chore: Release (0.5.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Aug 27, 2024
1 parent ad9f273 commit 2e8c52a
Show file tree
Hide file tree
Showing 6 changed files with 19 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.0"
".": "0.5.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


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.0"
version = "0.5.1"
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.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"

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.0</Version>
<Version>0.5.1</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.0' // x-release-please-version
version = '0.5.1' // 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.0",
"version": "0.5.1",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit 2e8c52a

Please sign in to comment.