diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 362516b8..61435278 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.2-alpha.0 +current_version = 0.5.2 tag = True sign_tags = True tag_message = ethash {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6406acc0..37f27703 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog -## [0.5.1] - 2020-01-30 +## [0.5.2] — 2020-08-03 + + - Fixed: Fix compilation with MSVC/C++17. + [#154](https://github.com/chfast/ethash/issues/154) + +## [0.5.1] — 2020-01-30 - Added: Experimental Python bindings — [ethash][pypi-ethash] package. [#123](https://github.com/chfast/ethash/pull/123) @@ -47,6 +52,7 @@ - Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog]. +[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 [0.5.0]: https://github.com/chfast/ethash/releases/tag/v0.5.0 [0.4.4]: https://github.com/chfast/ethash/releases/tag/v0.4.4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 720ce8d1..3b927b95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ HunterGate( ) project(ethash) -set(PROJECT_VERSION 0.5.2-alpha.0) +set(PROJECT_VERSION 0.5.2) cable_configure_compiler(NO_STACK_PROTECTION) if(CABLE_COMPILER_GNULIKE) diff --git a/include/ethash/version.h b/include/ethash/version.h index 179d4463..de5a773d 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.5.2-alpha.0" +#define ETHASH_VERSION "0.5.2" #ifdef __cplusplus namespace ethash diff --git a/setup.py b/setup.py index e2997d91..0ff3db9e 100755 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ def run(self): setup( name='ethash', - version='0.5.2-alpha.0', + version='0.5.2', description= "C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm", url='https://github.com/chfast/ethash',