From 86c7cbe020dd48605a43366f8a177d9d3916f405 Mon Sep 17 00:00:00 2001 From: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Date: Fri, 4 Aug 2023 16:26:15 +0800 Subject: [PATCH] fix(ccc): remove `debug-assertions` in release (#441) --- params/version.go | 2 +- rollup/circuitcapacitychecker/libzkp/Cargo.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/params/version.go b/params/version.go index 6ee97df5e1..c0c4aec541 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 4 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 20 // Patch version component of the current release + VersionPatch = 21 // Patch version component of the current release VersionMeta = "sepolia" // Version metadata to append to the version string ) diff --git a/rollup/circuitcapacitychecker/libzkp/Cargo.toml b/rollup/circuitcapacitychecker/libzkp/Cargo.toml index a844b3c423..6c8d5b3d07 100644 --- a/rollup/circuitcapacitychecker/libzkp/Cargo.toml +++ b/rollup/circuitcapacitychecker/libzkp/Cargo.toml @@ -36,4 +36,3 @@ debug-assertions = true [profile.release] opt-level = 3 -debug-assertions = true