From 6dee072c82c7797a16a28124ff24040a483e0d9b Mon Sep 17 00:00:00 2001 From: kevaundray Date: Wed, 29 May 2024 15:54:42 +0100 Subject: [PATCH] chore: Release (0.3.1) --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++ Cargo.toml | 12 ++--- bindings/csharp/PeerDASKZG.csproj | 76 ++++++++++++++-------------- bindings/java/java_code/build.gradle | 2 +- bindings/node/package.json | 2 +- 6 files changed, 57 insertions(+), 47 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c2f95fa9..30c5d542 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index fb7aa50b..896ee0c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.3.1](https://github.com/crate-crypto/peerdas-kzg/compare/v0.3.0...v0.3.1) (2024-05-29) + + +### Bug Fixes + +* Add build.gradle to release-please config ([da9479b](https://github.com/crate-crypto/peerdas-kzg/commit/da9479bd483980de56add7304b843d88273bc3e6)) +* Add node package.json version to release-please ([ac33e76](https://github.com/crate-crypto/peerdas-kzg/commit/ac33e76657d26c48e359a6516b4b3f6767099f92)) +* Node CI workflow runs on master ([5702205](https://github.com/crate-crypto/peerdas-kzg/commit/5702205bc0a1a709483dd6abacc356ccc7dcdf94)) +* Pack readme in csharp project ([5ce0470](https://github.com/crate-crypto/peerdas-kzg/commit/5ce0470b002dbec37d8f3205f56f4a7aed40da55)) + ## [0.3.0](https://github.com/crate-crypto/peerdas-kzg/compare/v0.2.6...v0.3.0) (2024-05-21) diff --git a/Cargo.toml b/Cargo.toml index 29b0524c..9eddb54e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ resolver = "2" authors = ["Kevaundray Wedderburn "] edition = "2021" license = "MIT" -version = "0.3.0" +version = "0.3.1" rust-version = "1.66" repository = "https://github.com/crate-crypto/peerdas-kzg" @@ -26,11 +26,11 @@ repository = "https://github.com/crate-crypto/peerdas-kzg" # 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_peerdas_bls12_381", version = "0.3.0", path = "bls12_381" } -polynomial = { package = "crate_crypto_internal_peerdas_polynomial", version = "0.3.0", path = "polynomial" } +bls12_381 = { package = "crate_crypto_internal_peerdas_bls12_381", version = "0.3.1", path = "bls12_381" } +polynomial = { package = "crate_crypto_internal_peerdas_polynomial", version = "0.3.1", path = "polynomial" } erasure_codes = { package = "crate_crypto_internal_peerdas_erasure_codes", version = "0.3.0", path = "erasure_codes" } -eip7594 = { version = "0.3.0", path = "eip7594" } -kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.3.0", path = "kzg_multi_open" } -c_peerdas_kzg = { version = "0.3.0", path = "bindings/c" } +eip7594 = { version = "0.3.1", path = "eip7594" } +kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.3.1", path = "kzg_multi_open" } +c_peerdas_kzg = { version = "0.3.1", path = "bindings/c" } hex = "0.4.3" rayon = "1.10.0" diff --git a/bindings/csharp/PeerDASKZG.csproj b/bindings/csharp/PeerDASKZG.csproj index 4705555d..9310b7dd 100644 --- a/bindings/csharp/PeerDASKZG.csproj +++ b/bindings/csharp/PeerDASKZG.csproj @@ -1,38 +1,38 @@ - - - - Library - True - net8.0 - enable - enable - PeerDASKZG - - - - Kevaundray Wedderburn - Kevaundray Wedderburn - C# Bindings for PeerDASKZG - true - true - PeerDASKZG.Bindings - Apache-2.0 - README.md - peerdas-kzg - git - https://github.com/crate-crypto/peerdas-kzg - snupkg - 0.0.1 - - - - - - - - - PreserveNewest - - - - + + + + Library + True + net8.0 + enable + enable + PeerDASKZG + + + + Kevaundray Wedderburn + Kevaundray Wedderburn + C# Bindings for PeerDASKZG + true + true + PeerDASKZG.Bindings + Apache-2.0 + README.md + peerdas-kzg + git + https://github.com/crate-crypto/peerdas-kzg + snupkg + 0.3.1 + + + + + + + + + PreserveNewest + + + + diff --git a/bindings/java/java_code/build.gradle b/bindings/java/java_code/build.gradle index 1a1f7d13..ff96e5b9 100644 --- a/bindings/java/java_code/build.gradle +++ b/bindings/java/java_code/build.gradle @@ -3,7 +3,7 @@ plugins { } group = 'ethereum.cryptography' -version = '0.0.1' // x-release-please-version +version = '0.3.1' // x-release-please-version repositories { mavenCentral() diff --git a/bindings/node/package.json b/bindings/node/package.json index 6a3dc13d..f9917dee 100644 --- a/bindings/node/package.json +++ b/bindings/node/package.json @@ -1,6 +1,6 @@ { "name": "@crate-crypto/peerdas-kzg", - "version": "0.2.0", + "version": "0.3.1", "scripts": { "artifacts": "napi artifacts", "build": "napi build --platform --release",