From c0628da1653c80e0dd196499de40a936cb517f31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Tue, 4 Dec 2018 14:10:00 +0100 Subject: [PATCH] ethash 0.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version: 0.4.0-alpha.0 → 0.4.0 --- .bumpversion.cfg | 6 +++--- CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8b94574c..ed66a771 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,18 +1,18 @@ [bumpversion] -current_version = 0.4.0-alpha.0 +current_version = 0.4.0 tag = True commit = True message = ethash {new_version} Bump version: {current_version} → {new_version} parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?Prc|alpha)\.(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}-{prerel}.{prerelver} {major}.{minor}.{patch} [bumpversion:part:prerel] optional_value = rel -values = +values = alpha rc rel diff --git a/CMakeLists.txt b/CMakeLists.txt index 91c679b3..1280d214 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ HunterGate( ) project(ethash) -set(PROJECT_VERSION 0.4.0-alpha.0) +set(PROJECT_VERSION 0.4.0) cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release RelWithDebInfo Debug)