From 75d569b16cb2e17a33484af0f03ec633cba3b582 Mon Sep 17 00:00:00 2001 From: George Kadianakis Date: Thu, 18 Jul 2024 18:25:00 +0300 Subject: [PATCH] Update versions in preparation for release (#455) --- .github/workflows/csharp-tests.yml | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj | 2 +- bindings/node.js/package.json | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/csharp-tests.yml b/.github/workflows/csharp-tests.yml index 5e0cba3af..1e525fd09 100644 --- a/.github/workflows/csharp-tests.yml +++ b/.github/workflows/csharp-tests.yml @@ -11,7 +11,7 @@ on: branches: - main env: - binding_build_number_based_version: 1.0.2.${{ github.run_number }} + binding_build_number_based_version: 1.0.3.${{ github.run_number }} jobs: build-ckzg: diff --git a/Cargo.lock b/Cargo.lock index 42c266610..5d8930e95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -78,7 +78,7 @@ checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" [[package]] name = "c-kzg" -version = "1.0.2" +version = "1.0.3" dependencies = [ "bindgen", "blst", diff --git a/Cargo.toml b/Cargo.toml index f355f8cef..6564a5295 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "c-kzg" -version = "1.0.2" +version = "1.0.3" edition = "2021" license = "Apache-2.0" description = "A minimal implementation of the Polynomial Commitments API for EIP-4844, written in C." diff --git a/bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj b/bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj index 0ba99fc4b..3b52b1f87 100644 --- a/bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj +++ b/bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj @@ -23,7 +23,7 @@ git https://github.com/ethereum/c-kzg-4844 snupkg - 0.1.0.2 + 0.1.0.3 diff --git a/bindings/node.js/package.json b/bindings/node.js/package.json index 198a49725..5a34f87a6 100644 --- a/bindings/node.js/package.json +++ b/bindings/node.js/package.json @@ -1,6 +1,6 @@ { "name": "c-kzg", - "version": "3.0.2", + "version": "3.0.3", "description": "NodeJS bindings for C-KZG", "contributors": [ "Dan Coffman ", diff --git a/setup.py b/setup.py index 42d4c36e8..c4a27afe3 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def main(): setup( name="ckzg", - version="1.0.2", + version="1.0.3", author="Ethereum Foundation", author_email="security@ethereum.org", url="https://github.com/ethereum/c-kzg-4844",