Skip to content

Commit

Permalink
chore: Release (0.5.0) (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray authored Aug 27, 2024
1 parent cef8ed3 commit b03927a
Show file tree
Hide file tree
Showing 6 changed files with 42 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.4.1"
".": "0.5.0"
}
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## [0.5.0](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.4.1...v0.5.0) (2024-08-27)


### ⚠ BREAKING CHANGES

* **java:** Rename `recoverCellsAndProof` -> `recoverCellsAndKZGProofs` ([#232](https://github.com/crate-crypto/rust-eth-kzg/issues/232))
* Add a ThreadCount enum for specifying the number of threads to use ([#225](https://github.com/crate-crypto/rust-eth-kzg/issues/225))
* Allow downstream users to avoid the precomputations that are needed for the FixedBaseMSM algorithm in FK20 ([#224](https://github.com/crate-crypto/rust-eth-kzg/issues/224))
* **rust:** Rename `recover_cells_and_proofs` -> `recover_cells_and_kzg_proofs` ([#219](https://github.com/crate-crypto/rust-eth-kzg/issues/219))
* Move `recover_evaluations_in_domain_order` into cosets.rs ([#175](https://github.com/crate-crypto/rust-eth-kzg/issues/175))

### Features

* Add a ThreadCount enum for specifying the number of threads to use ([#225](https://github.com/crate-crypto/rust-eth-kzg/issues/225)) ([488ae20](https://github.com/crate-crypto/rust-eth-kzg/commit/488ae2008c1171506bd7ded8f50070960877d72d))
* Allow bindings to specify the number of threads and whether precomputation is wanted ([#228](https://github.com/crate-crypto/rust-eth-kzg/issues/228)) ([ee42bf8](https://github.com/crate-crypto/rust-eth-kzg/commit/ee42bf8da72e6378f53176bd54d33ec9c9963d5a))
* Allow downstream users to avoid the precomputations that are needed for the FixedBaseMSM algorithm in FK20 ([#224](https://github.com/crate-crypto/rust-eth-kzg/issues/224)) ([5367e79](https://github.com/crate-crypto/rust-eth-kzg/commit/5367e791be156bbb0cb57cf6ce204008c17957fd))


### Bug Fixes

* Namespace C methods ([#148](https://github.com/crate-crypto/rust-eth-kzg/issues/148)) ([e175ccd](https://github.com/crate-crypto/rust-eth-kzg/commit/e175ccd26f0276cbd9b5a7c0b8626cd0328bc654))
* Trigger maybe_rayon release-please config ([cef8ed3](https://github.com/crate-crypto/rust-eth-kzg/commit/cef8ed310317d9305148913aa674e03d8d0593b8))


### Miscellaneous Chores

* **java:** Rename `recoverCellsAndProof` -> `recoverCellsAndKZGProofs` ([#232](https://github.com/crate-crypto/rust-eth-kzg/issues/232)) ([7157789](https://github.com/crate-crypto/rust-eth-kzg/commit/7157789f08f636f18f9d02226344fb6c08bb4628))
* Move `recover_evaluations_in_domain_order` into cosets.rs ([#175](https://github.com/crate-crypto/rust-eth-kzg/issues/175)) ([5e6ff4f](https://github.com/crate-crypto/rust-eth-kzg/commit/5e6ff4f8a1f49508c3c272b8182bc4b9cefae234))
* **rust:** Rename `recover_cells_and_proofs` -> `recover_cells_and_kzg_proofs` ([#219](https://github.com/crate-crypto/rust-eth-kzg/issues/219)) ([cc06254](https://github.com/crate-crypto/rust-eth-kzg/commit/cc0625459ab6028a4bbc718f8ab86cfe11f12992))

## [0.4.1](https://github.com/crate-crypto/rust-eth-kzg/compare/v0.4.0...v0.4.1) (2024-08-13)


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.4.1"
version = "0.5.0"
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.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" }
maybe_rayon = { package = "crate_crypto_internal_eth_kzg_maybe_rayon", version = "0.4.1", path = "maybe_rayon" }
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" }
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" }
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.1</Version>
<Version>0.5.0</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.1' // x-release-please-version
version = '0.5.0' // 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.1",
"version": "0.5.0",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit b03927a

Please sign in to comment.