From 4576af36f8ebb9bee2d5f04be692f295c64a7211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Wed, 26 May 2021 21:38:36 +0200 Subject: [PATCH] ethash 0.7.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version: 0.7.0-alpha.0 → 0.7.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 7dea9995..5f36bb44 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0-alpha.0 +current_version = 0.7.0 tag = True sign_tags = True tag_message = ethash {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 26375fdf..eda8919f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.7.0] — unreleased +## [0.7.0] — 2021-05-26 - Changed: The global context API (aka "managed" API) has been moved to separate library `ethash::global-context` and `ethash/global_context.hpp` @@ -74,7 +74,7 @@ - Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog]. -[0.7.0]: https://github.com/chfast/ethash/compare/v0.6.0..master +[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 [0.5.2]: https://github.com/chfast/ethash/releases/tag/v0.5.2 [0.5.1]: https://github.com/chfast/ethash/releases/tag/v0.5.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index e4c94696..7e21a033 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ HunterGate( ) project(ethash) -set(PROJECT_VERSION 0.7.0-alpha.0) +set(PROJECT_VERSION 0.7.0) cable_configure_compiler(NO_STACK_PROTECTION) if(CABLE_COMPILER_GNULIKE) diff --git a/include/ethash/version.h b/include/ethash/version.h index faf8b599..001d2693 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.7.0-alpha.0" +#define ETHASH_VERSION "0.7.0" #ifdef __cplusplus namespace ethash diff --git a/setup.py b/setup.py index 33d9cb3a..cd06bb75 100755 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ def run(self): setup( name='ethash', - version='0.7.0-alpha.0', + version='0.7.0', description= "C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm", url='https://github.com/chfast/ethash',