Skip to content

Commit

Permalink
ethash 0.7.1
Browse files Browse the repository at this point in the history
Bump version: 0.7.0 → 0.7.1
  • Loading branch information
chfast committed Aug 26, 2021
1 parent b784418 commit 671dafe
Show file tree
Hide file tree
Showing 5 changed files with 14 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.7.0
current_version = 0.7.1
tag = True
sign_tags = True
tag_message = ethash {new_version}
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.7.1] — 2021-08-26

- Added: Support for building with clang-cl (LLVM-based toolchain for Visual Studio 2019).
[#179](https://github.com/chfast/ethash/pull/179)
[#180](https://github.com/chfast/ethash/pull/180)
[#182](https://github.com/chfast/ethash/pull/182)
[#183](https://github.com/chfast/ethash/pull/183)
[#184](https://github.com/chfast/ethash/pull/184)

## [0.7.0] — 2021-05-26

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


[0.7.1]: https://github.com/chfast/ethash/releases/tag/v0.7.1
[0.7.0]: https://github.com/chfast/ethash/releases/tag/v0.7.0
[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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cable_set_build_type(DEFAULT Release CONFIGURATION_TYPES Release RelWithDebInfo
include(cmake/Hunter/init.cmake)

project(ethash)
set(PROJECT_VERSION 0.7.0)
set(PROJECT_VERSION 0.7.1)

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.7.0"
#define ETHASH_VERSION "0.7.1"

#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.7.0',
version='0.7.1',
description=
"C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm",
url='https://github.com/chfast/ethash',
Expand Down

0 comments on commit 671dafe

Please sign in to comment.