Skip to content

Commit

Permalink
chore: Release (0.3.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevaundray committed Jun 17, 2024
1 parent 8206ad1 commit 7f8e62a
Show file tree
Hide file tree
Showing 6 changed files with 58 additions and 47 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.3.0"
".": "0.3.1"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.3.1](https://github.com/crate-crypto/peerdas-kzg/compare/v0.3.0...v0.3.1) (2024-06-17)


### 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))
* BYTES_PER_CELL constant ([3e8455d](https://github.com/crate-crypto/peerdas-kzg/commit/3e8455d7046309e474f85a69d3b78e41dec89c7b))
* 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)


Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ resolver = "2"
authors = ["Kevaundray Wedderburn <kev@the.dev>"]
edition = "2021"
license = "MIT"
version = "0.3.0"
version = "0.3.1"
rust-version = "1.70"
repository = "https://github.com/crate-crypto/peerdas-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_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"

Expand Down
76 changes: 38 additions & 38 deletions bindings/csharp/csharp_code/PeerDASKZG.bindings/PeerDASKZG.csproj
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>PeerDASKZG</RootNamespace>
</PropertyGroup>

<PropertyGroup>
<Authors>Kevaundray Wedderburn</Authors>
<Copyright>Kevaundray Wedderburn</Copyright>
<Description>C# Bindings for PeerDASKZG</Description>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<PackageId>PeerDASKZG.Bindings</PackageId>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>peerdas-kzg</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/crate-crypto/peerdas-kzg</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>0.0.1</Version>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>

<ItemGroup>
<None Update="runtimes\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>PeerDASKZG</RootNamespace>
</PropertyGroup>

<PropertyGroup>
<Authors>Kevaundray Wedderburn</Authors>
<Copyright>Kevaundray Wedderburn</Copyright>
<Description>C# Bindings for PeerDASKZG</Description>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<PackageId>PeerDASKZG.Bindings</PackageId>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>peerdas-kzg</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/crate-crypto/peerdas-kzg</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>0.3.1</Version>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>

<ItemGroup>
<None Update="runtimes\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion bindings/java/java_code/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'ethereum.cryptography'
version = '0.0.1' // x-release-please-version
version = '0.3.1' // x-release-please-version

repositories {
mavenCentral()
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/peerdas-kzg",
"version": "0.2.0",
"version": "0.3.1",
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
Expand Down

0 comments on commit 7f8e62a

Please sign in to comment.