Skip to content

Commit bd6113f

Browse files
committed
chore: Release (0.3.1)
1 parent d01f70f commit bd6113f

File tree

6 files changed

+58
-47
lines changed

6 files changed

+58
-47
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.3.0"
2+
".": "0.3.1"
33
}

CHANGELOG.md

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

3+
## [0.3.1](https://github.com/crate-crypto/peerdas-kzg/compare/v0.3.0...v0.3.1) (2024-06-25)
4+
5+
6+
### Bug Fixes
7+
8+
* Add build.gradle to release-please config ([da9479b](https://github.com/crate-crypto/peerdas-kzg/commit/da9479bd483980de56add7304b843d88273bc3e6))
9+
* Add node package.json version to release-please ([ac33e76](https://github.com/crate-crypto/peerdas-kzg/commit/ac33e76657d26c48e359a6516b4b3f6767099f92))
10+
* BYTES_PER_CELL constant ([3e8455d](https://github.com/crate-crypto/peerdas-kzg/commit/3e8455d7046309e474f85a69d3b78e41dec89c7b))
11+
* Node CI workflow runs on master ([5702205](https://github.com/crate-crypto/peerdas-kzg/commit/5702205bc0a1a709483dd6abacc356ccc7dcdf94))
12+
* Pack readme in csharp project ([5ce0470](https://github.com/crate-crypto/peerdas-kzg/commit/5ce0470b002dbec37d8f3205f56f4a7aed40da55))
13+
314
## [0.3.0](https://github.com/crate-crypto/peerdas-kzg/compare/v0.2.6...v0.3.0) (2024-05-21)
415

516

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ resolver = "2"
1919
authors = ["Kevaundray Wedderburn <kev@the.dev>"]
2020
edition = "2021"
2121
license = "MIT"
22-
version = "0.3.0"
22+
version = "0.3.1"
2323
rust-version = "1.70"
2424
repository = "https://github.com/crate-crypto/peerdas-kzg"
2525

2626
[workspace.dependencies]
2727
# These names are essentially a way to achieve scoping when we publish to crates.io
2828
# Ideally we don't publish bls12_381 and polynomial, but crates.io requires
2929
# all dependencies to be published and not local.
30-
bls12_381 = { package = "crate_crypto_internal_peerdas_bls12_381", version = "0.3.0", path = "bls12_381" }
31-
polynomial = { package = "crate_crypto_internal_peerdas_polynomial", version = "0.3.0", path = "polynomial" }
30+
bls12_381 = { package = "crate_crypto_internal_peerdas_bls12_381", version = "0.3.1", path = "bls12_381" }
31+
polynomial = { package = "crate_crypto_internal_peerdas_polynomial", version = "0.3.1", path = "polynomial" }
3232
erasure_codes = { package = "crate_crypto_internal_peerdas_erasure_codes", version = "0.3.0", path = "erasure_codes" }
33-
eip7594 = { version = "0.3.0", path = "eip7594" }
34-
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.3.0", path = "kzg_multi_open" }
35-
c_peerdas_kzg = { version = "0.3.0", path = "bindings/c" }
33+
eip7594 = { version = "0.3.1", path = "eip7594" }
34+
kzg_multi_open = { package = "crate_crypto_kzg_multi_open_fk20", version = "0.3.1", path = "kzg_multi_open" }
35+
c_peerdas_kzg = { version = "0.3.1", path = "bindings/c" }
3636
hex = "0.4.3"
3737
rayon = "1.10.0"
3838

Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<OutputType>Library</OutputType>
5-
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
6-
<TargetFramework>net8.0</TargetFramework>
7-
<ImplicitUsings>enable</ImplicitUsings>
8-
<Nullable>enable</Nullable>
9-
<RootNamespace>PeerDASKZG</RootNamespace>
10-
</PropertyGroup>
11-
12-
<PropertyGroup>
13-
<Authors>Kevaundray Wedderburn</Authors>
14-
<Copyright>Kevaundray Wedderburn</Copyright>
15-
<Description>C# Bindings for PeerDASKZG</Description>
16-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
17-
<IncludeSymbols>true</IncludeSymbols>
18-
<PackageId>PeerDASKZG.Bindings</PackageId>
19-
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
20-
<PackageReadmeFile>README.md</PackageReadmeFile>
21-
<PackageTags>peerdas-kzg</PackageTags>
22-
<RepositoryType>git</RepositoryType>
23-
<RepositoryUrl>https://github.com/crate-crypto/peerdas-kzg</RepositoryUrl>
24-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
25-
<Version>0.0.1</Version>
26-
</PropertyGroup>
27-
28-
<ItemGroup>
29-
<None Include="README.md" Pack="true" PackagePath="" />
30-
</ItemGroup>
31-
32-
<ItemGroup>
33-
<None Update="runtimes\**\*">
34-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
35-
</None>
36-
</ItemGroup>
37-
38-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Library</OutputType>
5+
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
6+
<TargetFramework>net8.0</TargetFramework>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Nullable>enable</Nullable>
9+
<RootNamespace>PeerDASKZG</RootNamespace>
10+
</PropertyGroup>
11+
12+
<PropertyGroup>
13+
<Authors>Kevaundray Wedderburn</Authors>
14+
<Copyright>Kevaundray Wedderburn</Copyright>
15+
<Description>C# Bindings for PeerDASKZG</Description>
16+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
17+
<IncludeSymbols>true</IncludeSymbols>
18+
<PackageId>PeerDASKZG.Bindings</PackageId>
19+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
20+
<PackageReadmeFile>README.md</PackageReadmeFile>
21+
<PackageTags>peerdas-kzg</PackageTags>
22+
<RepositoryType>git</RepositoryType>
23+
<RepositoryUrl>https://github.com/crate-crypto/peerdas-kzg</RepositoryUrl>
24+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
25+
<Version>0.3.1</Version>
26+
</PropertyGroup>
27+
28+
<ItemGroup>
29+
<None Include="README.md" Pack="true" PackagePath=""/>
30+
</ItemGroup>
31+
32+
<ItemGroup>
33+
<None Update="runtimes\**\*">
34+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
35+
</None>
36+
</ItemGroup>
37+
38+
</Project>

bindings/java/java_code/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'ethereum.cryptography'
9-
version = '0.0.1' // x-release-please-version
9+
version = '0.3.1' // x-release-please-version
1010

1111
repositories {
1212
mavenCentral()

bindings/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@crate-crypto/peerdas-kzg",
3-
"version": "0.2.0",
3+
"version": "0.3.1",
44
"scripts": {
55
"artifacts": "napi artifacts",
66
"build": "napi build --platform --release",

0 commit comments

Comments
 (0)