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 May 23, 2024
1 parent ed156c2 commit 2b0f49e
Show file tree
Hide file tree
Showing 6 changed files with 56 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"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

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


### Bug Fixes

* 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)


Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ resolver = "2"
authors = ["Kevaundray Wedderburn <kev@the.dev>"]
edition = "2021"
license = "MIT"
version = "0.3.0"
version = "0.3.1"
rust-version = "1.66"
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" }
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" }
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" }
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"
76 changes: 38 additions & 38 deletions bindings/csharp/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>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Package

# x-release-please-start-version
version = "0.3.0"
version = "0.3.1"
# x-release-please-end

author = "Kevaundray Wedderburn"
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": "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 2b0f49e

Please sign in to comment.