Skip to content

Commit 38c8bac

Browse files
committed
ethash 0.5.2
Bump version: 0.5.2-alpha.0 → 0.5.2
1 parent 6198238 commit 38c8bac

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.2-alpha.0
2+
current_version = 0.5.2
33
tag = True
44
sign_tags = True
55
tag_message = ethash {new_version}

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

3-
## [0.5.1] - 2020-01-30
3+
## [0.5.2] — 2020-08-03
4+
5+
- Fixed: Fix compilation with MSVC/C++17.
6+
[#154](https://github.com/chfast/ethash/issues/154)
7+
8+
## [0.5.1] — 2020-01-30
49

510
- Added: Experimental Python bindings — [ethash][pypi-ethash] package.
611
[#123](https://github.com/chfast/ethash/pull/123)
@@ -47,6 +52,7 @@
4752
- Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog].
4853

4954

55+
[0.5.2]: https://github.com/chfast/ethash/releases/tag/v0.5.2
5056
[0.5.1]: https://github.com/chfast/ethash/releases/tag/v0.5.1
5157
[0.5.0]: https://github.com/chfast/ethash/releases/tag/v0.5.0
5258
[0.4.4]: https://github.com/chfast/ethash/releases/tag/v0.4.4

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ HunterGate(
3333
)
3434

3535
project(ethash)
36-
set(PROJECT_VERSION 0.5.2-alpha.0)
36+
set(PROJECT_VERSION 0.5.2)
3737

3838
cable_configure_compiler(NO_STACK_PROTECTION)
3939
if(CABLE_COMPILER_GNULIKE)

include/ethash/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#pragma once
77

88
/** The ethash library version. */
9-
#define ETHASH_VERSION "0.5.2-alpha.0"
9+
#define ETHASH_VERSION "0.5.2"
1010

1111
#ifdef __cplusplus
1212
namespace ethash

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run(self):
6868

6969
setup(
7070
name='ethash',
71-
version='0.5.2-alpha.0',
71+
version='0.5.2',
7272
description=
7373
"C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm",
7474
url='https://github.com/chfast/ethash',

0 commit comments

Comments
 (0)