From 62cbdb17f97be7461e5d0c14c5f7c927d577025d Mon Sep 17 00:00:00 2001 From: Justin Traglia <95511699+jtraglia@users.noreply.github.com> Date: Mon, 19 Aug 2024 11:31:51 -0500 Subject: [PATCH] Update versions in preparation of v2.0.0 release (#489) --- .github/workflows/csharp-tests.yml | 2 +- Cargo.lock | 2 +- Cargo.toml | 4 ++-- bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj | 2 +- fuzz/Cargo.lock | 2 +- setup.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/csharp-tests.yml b/.github/workflows/csharp-tests.yml index 1e525fd0..254830d2 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.3.${{ github.run_number }} + binding_build_number_based_version: 2.0.0.${{ github.run_number }} jobs: build-ckzg: diff --git a/Cargo.lock b/Cargo.lock index a60c1537..8fb956c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -93,7 +93,7 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "c-kzg" -version = "1.0.3" +version = "2.0.0" dependencies = [ "arbitrary", "bindgen", diff --git a/Cargo.toml b/Cargo.toml index 1411b1c8..2c000cb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "c-kzg" -version = "1.0.3" +version = "2.0.0" edition = "2021" license = "Apache-2.0" -description = "A minimal implementation of the Polynomial Commitments API for EIP-4844, written in C." +description = "A minimal implementation of the Polynomial Commitments API for EIP-4844 and EIP-7594, written in C." links = "ckzg" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj b/bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj index b8b41a5f..e03ccb28 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.3 + 0.2.0.0 $(NoWarn);IDE0049 diff --git a/fuzz/Cargo.lock b/fuzz/Cargo.lock index c04480bc..53da26a5 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -68,7 +68,7 @@ checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" [[package]] name = "c-kzg" -version = "1.0.3" +version = "2.0.0" dependencies = [ "arbitrary", "blst", diff --git a/setup.py b/setup.py index 44ddc3d8..d5299ea2 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def main(): setup( name="ckzg", - version="1.0.3", + version="2.0.0", author="Ethereum Foundation", author_email="security@ethereum.org", url="https://github.com/ethereum/c-kzg-4844",