Skip to content

Commit

Permalink
ethash 0.5.2
Browse files Browse the repository at this point in the history
Bump version: 0.5.2-alpha.0 → 0.5.2
  • Loading branch information
chfast committed Aug 3, 2020
1 parent 6198238 commit 38c8bac
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 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.5.2-alpha.0
current_version = 0.5.2
tag = True
sign_tags = True
tag_message = ethash {new_version}
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## [0.5.1] - 2020-01-30
## [0.5.2] — 2020-08-03

- Fixed: Fix compilation with MSVC/C++17.
[#154](https://github.com/chfast/ethash/issues/154)

## [0.5.1] — 2020-01-30

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


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

project(ethash)
set(PROJECT_VERSION 0.5.2-alpha.0)
set(PROJECT_VERSION 0.5.2)

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.5.2-alpha.0"
#define ETHASH_VERSION "0.5.2"

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

0 comments on commit 38c8bac

Please sign in to comment.