File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.5.2-alpha.0
2
+ current_version = 0.5.2
3
3
tag = True
4
4
sign_tags = True
5
5
tag_message = ethash {new_version}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
4
9
5
10
- Added: Experimental Python bindings — [ ethash] [ pypi-ethash ] package.
6
11
[ #123 ] ( https://github.com/chfast/ethash/pull/123 )
47
52
- Added: Experimental support for [ ProgPoW] [ 0.9.1] [ ProgPoW-changelog ] .
48
53
49
54
55
+ [ 0.5.2 ] : https://github.com/chfast/ethash/releases/tag/v0.5.2
50
56
[ 0.5.1 ] : https://github.com/chfast/ethash/releases/tag/v0.5.1
51
57
[ 0.5.0 ] : https://github.com/chfast/ethash/releases/tag/v0.5.0
52
58
[ 0.4.4 ] : https://github.com/chfast/ethash/releases/tag/v0.4.4
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ HunterGate(
33
33
)
34
34
35
35
project (ethash)
36
- set (PROJECT_VERSION 0.5.2-alpha.0 )
36
+ set (PROJECT_VERSION 0.5.2)
37
37
38
38
cable_configure_compiler(NO_STACK_PROTECTION)
39
39
if (CABLE_COMPILER_GNULIKE)
Original file line number Diff line number Diff line change 6
6
#pragma once
7
7
8
8
/* * The ethash library version. */
9
- #define ETHASH_VERSION " 0.5.2-alpha.0 "
9
+ #define ETHASH_VERSION " 0.5.2"
10
10
11
11
#ifdef __cplusplus
12
12
namespace ethash
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def run(self):
68
68
69
69
setup (
70
70
name = 'ethash' ,
71
- version = '0.5.2-alpha.0 ' ,
71
+ version = '0.5.2' ,
72
72
description =
73
73
"C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm" ,
74
74
url = 'https://github.com/chfast/ethash' ,
You can’t perform that action at this time.
0 commit comments