diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8f171057..85866377 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.3 +current_version = 0.4.4 tag = True commit = True message = ethash {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index 810e58bc..cdd56105 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.4.4] - unreleased +## [0.4.4] - 2019-02-26 - Fixed: [[#125](https://github.com/chfast/ethash/pull/125)] Fix compilation on PowerPC architectures (-mtune=generic not supported there). @@ -27,7 +27,7 @@ - Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog]. -[0.4.4]: https://github.com/chfast/ethash/compare/v0.4.3...release/0.4 +[0.4.4]: https://github.com/chfast/ethash/releases/tag/v0.4.4 [0.4.3]: https://github.com/chfast/ethash/releases/tag/v0.4.3 [0.4.2]: https://github.com/chfast/ethash/releases/tag/v0.4.2 [0.4.1]: https://github.com/chfast/ethash/releases/tag/v0.4.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 84e6516b..def90af6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ HunterGate( ) project(ethash) -set(PROJECT_VERSION 0.4.3) +set(PROJECT_VERSION 0.4.4) cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release RelWithDebInfo Debug) diff --git a/include/ethash/version.h b/include/ethash/version.h index f0372b0d..bae70171 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.4.3" +#define ETHASH_VERSION "0.4.4" #ifdef __cplusplus namespace ethash