Skip to content

Commit

Permalink
chore: Release (0.4.1) (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Aug 13, 2024
1 parent f5f9909 commit a0e86f4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 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.4.0"
".": "0.4.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.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)


Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ resolver = "2"
authors = ["Kevaundray Wedderburn <[email protected]>"]
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"

[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.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"

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

0 comments on commit a0e86f4

Please sign in to comment.