Skip to content
This repository was archived by the owner on Jun 8, 2025. It is now read-only.

Commit 671dafe

Browse files
committed
ethash 0.7.1
Bump version: 0.7.0 → 0.7.1
1 parent b784418 commit 671dafe

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
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.7.0
2+
current_version = 0.7.1
33
tag = True
44
sign_tags = True
55
tag_message = ethash {new_version}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.7.1] — 2021-08-26
4+
5+
- Added: Support for building with clang-cl (LLVM-based toolchain for Visual Studio 2019).
6+
[#179](https://github.com/chfast/ethash/pull/179)
7+
[#180](https://github.com/chfast/ethash/pull/180)
8+
[#182](https://github.com/chfast/ethash/pull/182)
9+
[#183](https://github.com/chfast/ethash/pull/183)
10+
[#184](https://github.com/chfast/ethash/pull/184)
11+
312
## [0.7.0] — 2021-05-26
413

514
- Changed: The global context API (aka "managed" API) has been moved to
@@ -74,6 +83,7 @@
7483
- Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog].
7584

7685

86+
[0.7.1]: https://github.com/chfast/ethash/releases/tag/v0.7.1
7787
[0.7.0]: https://github.com/chfast/ethash/releases/tag/v0.7.0
7888
[0.6.0]: https://github.com/chfast/ethash/releases/tag/v0.6.0
7989
[0.5.2]: https://github.com/chfast/ethash/releases/tag/v0.5.2

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release RelWithDebInfo
1919
include(cmake/Hunter/init.cmake)
2020

2121
project(ethash)
22-
set(PROJECT_VERSION 0.7.0)
22+
set(PROJECT_VERSION 0.7.1)
2323

2424
cable_configure_compiler(NO_STACK_PROTECTION)
2525
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.7.0"
9+
#define ETHASH_VERSION "0.7.1"
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.7.0',
71+
version='0.7.1',
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)