Skip to content

Commit

Permalink
ethash 0.6.0
Browse files Browse the repository at this point in the history
Bump version: 0.6.0-alpha.2 → 0.6.0
  • Loading branch information
chfast committed Dec 15, 2020
1 parent 9b8ab87 commit e4a15c3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0-alpha.2
current_version = 0.6.0
tag = True
sign_tags = True
tag_message = ethash {new_version}
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.6.0] — 2020-12-15

- Added: The ethash::keccak library received the optimized Keccak implementation
which uses BMI and BMI2 x86_64 extensions. This implementation is automatically
selected at startup provided the used extensions are available in the hardware.
[#162](https://github.com/chfast/ethash/pull/162)
[#168](https://github.com/chfast/ethash/pull/168)

## [0.5.2] — 2020-08-03

- Fixed: Fix compilation with MSVC/C++17.
Expand Down Expand Up @@ -52,6 +60,7 @@
- Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog].


[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
[0.5.0]: https://github.com/chfast/ethash/releases/tag/v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ HunterGate(
)

project(ethash)
set(PROJECT_VERSION 0.6.0-alpha.2)
set(PROJECT_VERSION 0.6.0)

cable_configure_compiler(NO_STACK_PROTECTION)
if(CABLE_COMPILER_GNULIKE)
Expand Down
2 changes: 1 addition & 1 deletion include/ethash/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#pragma once

/** The ethash library version. */
#define ETHASH_VERSION "0.6.0-alpha.2"
#define ETHASH_VERSION "0.6.0"

#ifdef __cplusplus
namespace ethash
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def run(self):

setup(
name='ethash',
version='0.6.0-alpha.2',
version='0.6.0',
description=
"C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm",
url='https://github.com/chfast/ethash',
Expand Down

0 comments on commit e4a15c3

Please sign in to comment.