From c73fe2c3d8961dfcd4913b3ee3e3976bc6a8e0f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Tue, 26 Feb 2019 10:27:18 +0100 Subject: [PATCH] ethash 0.4.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump version: 0.4.3 → 0.4.4 --- .bumpversion.cfg | 2 +- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- include/ethash/version.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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