Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/csharp-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
branches:
- main
env:
binding_build_number_based_version: 2.1.5.${{ github.run_number }}
binding_build_number_based_version: 2.1.6.${{ github.run_number }}

jobs:
build-ckzg:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "c-kzg"
version = "2.1.5"
version = "2.1.6"
edition = "2021"
license = "Apache-2.0"
description = "A minimal implementation of the Polynomial Commitments API for EIP-4844 and EIP-7594, written in C."
Expand Down
2 changes: 1 addition & 1 deletion bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ethereum/c-kzg-4844</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>0.2.1.5</Version>
<Version>0.2.1.6</Version>
<!-- Disable the warnings about using UInt64-->
<NoWarn>$(NoWarn);IDE0049</NoWarn>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion bindings/node.js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "c-kzg",
"version": "4.1.5",
"version": "4.1.6",
"description": "NodeJS bindings for C-KZG",
"contributors": [
"Matthew Keil <me@matthewkeil.com>",
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion kzg4844.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mode = ScriptMode.Verbose
##################################################

packageName = "kzg4844"
version = "2.1.5"
version = "2.1.6"
author = "Andri Lim"
description = "Nim wrapper of c-kzg-4844"
license = "Apache License 2.0"
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule CKZG.MixProject do
use Mix.Project

@version "2.1.5"
@version "2.1.6"

def project do
# Make cwd always `bindings/elixir`.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main():

setup(
name="ckzg",
version="2.1.5",
version="2.1.6",
author="Ethereum Foundation",
author_email="security@ethereum.org",
url="https://github.com/ethereum/c-kzg-4844",
Expand Down
Loading