Skip to content

Commit

Permalink
ethash 1.0.1
Browse files Browse the repository at this point in the history
Bump version: 1.0.0 → 1.0.1
  • Loading branch information
chfast committed Apr 3, 2023
1 parent 8707075 commit 8e18c3d
Show file tree
Hide file tree
Showing 5 changed files with 12 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 = 1.0.0
current_version = 1.0.1
tag = True
sign_tags = True
tag_message = ethash {new_version}
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.0.1] — 2023-04-03

- CMake and build improvements.
[#230](https://github.com/chfast/ethash/pull/230)
[#231](https://github.com/chfast/ethash/pull/231)

## [1.0.0] — 2022-08-25

- Removed: Deprecated function `ethash_verify()` has been removed.
Expand Down Expand Up @@ -144,7 +150,8 @@
- Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog].


[1.0.0]: https://github.com/chfast/ethash/releases/tag/v10.0.0
[1.0.1]: https://github.com/chfast/ethash/releases/tag/v1.0.1
[1.0.0]: https://github.com/chfast/ethash/releases/tag/v1.0.0
[0.9.0]: https://github.com/chfast/ethash/releases/tag/v0.9.0
[0.8.0]: https://github.com/chfast/ethash/releases/tag/v0.8.0
[0.7.1]: https://github.com/chfast/ethash/releases/tag/v0.7.1
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if(ETHASH_TESTING)
endif()

project(ethash)
set(PROJECT_VERSION 1.0.0)
set(PROJECT_VERSION 1.0.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 "1.0.0"
#define ETHASH_VERSION "1.0.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 @@ -67,7 +67,7 @@ def run(self):

setup(
name='ethash',
version='1.0.0',
version='1.0.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 8e18c3d

Please sign in to comment.