From e3e002ecc25ca699349aa62fa38e7b7cc5f653af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Tue, 9 Nov 2021 09:29:42 +0100 Subject: [PATCH] ethash 0.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version: 0.8.0-alpha.0 → 0.8.0 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- include/ethash/version.h | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e97d1141..d2d913ee 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.0-alpha.0 +current_version = 0.8.0 tag = True sign_tags = True tag_message = ethash {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c928f36..a0b2dfc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.8.0] — unreleased +## [0.8.0] — 2021-11-09 - Added: The new set of functions which verify Ethash hashes against difficulty has been added to the library: `verify_against_difficulty()` and @@ -124,7 +124,7 @@ - Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog]. -[0.8.0]: https://github.com/chfast/ethash/compare/v0.7.1..master +[0.8.0]: https://github.com/chfast/ethash/releases/tag/v0.8.0 [0.7.1]: https://github.com/chfast/ethash/releases/tag/v0.7.1 [0.7.0]: https://github.com/chfast/ethash/releases/tag/v0.7.0 [0.6.0]: https://github.com/chfast/ethash/releases/tag/v0.6.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 38ef99e0..4f3c2274 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release RelWithDebInfo include(cmake/Hunter/init.cmake) project(ethash) -set(PROJECT_VERSION 0.8.0-alpha.0) +set(PROJECT_VERSION 0.8.0) cable_configure_compiler(NO_STACK_PROTECTION) if(CABLE_COMPILER_GNULIKE) diff --git a/include/ethash/version.h b/include/ethash/version.h index c86ad698..5ca33d76 100644 --- a/include/ethash/version.h +++ b/include/ethash/version.h @@ -6,7 +6,7 @@ #pragma once /** The ethash library version. */ -#define ETHASH_VERSION "0.8.0-alpha.0" +#define ETHASH_VERSION "0.8.0" #ifdef __cplusplus namespace ethash diff --git a/setup.py b/setup.py index da5726e7..5313c173 100755 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ def run(self): setup( name='ethash', - version='0.8.0-alpha.0', + version='0.8.0', description= "C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm", url='https://github.com/chfast/ethash',