From 45ccc3751b6c4e5af95c773ade728a9f28900a80 Mon Sep 17 00:00:00 2001 From: Liam Date: Mon, 11 Mar 2024 18:05:22 +1100 Subject: [PATCH] bump version to 2.1.0 (#485) Co-authored-by: Liam Lai --- params/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/params/version.go b/params/version.go index ea91eea3d59e..f458365c4801 100644 --- a/params/version.go +++ b/params/version.go @@ -22,8 +22,8 @@ import ( const ( VersionMajor = 2 // Major version component of the current release - VersionMinor = 0 // Minor version component of the current release - VersionPatch = 2 // Patch version component of the current release + VersionMinor = 1 // Minor version component of the current release + VersionPatch = 0 // Patch version component of the current release VersionMeta = "beta1" // Version metadata to append to the version string )