Skip to content

Commit dfc8d08

Browse files
committedAug 25, 2022
ethash 1.0.0
Bump version: 1.0.0-alpha.0 → 1.0.0
1 parent e0b22d1 commit dfc8d08

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0-alpha.0
2+
current_version = 1.0.0
33
tag = True
44
sign_tags = True
55
tag_message = ethash {new_version}

‎CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [1.0.0]unreleased
3+
## [1.0.0]2022-08-25
44

55
- Removed: Deprecated function `ethash_verify()` has been removed.
66
Use `ethash_verify_against_boundary()`.
@@ -144,7 +144,7 @@
144144
- Added: Experimental support for [ProgPoW] [0.9.1][ProgPoW-changelog].
145145

146146

147-
[1.0.0]: https://github.com/chfast/ethash/compare/v0.9.0..master
147+
[1.0.0]: https://github.com/chfast/ethash/releases/tag/v10.0.0
148148
[0.9.0]: https://github.com/chfast/ethash/releases/tag/v0.9.0
149149
[0.8.0]: https://github.com/chfast/ethash/releases/tag/v0.8.0
150150
[0.7.1]: https://github.com/chfast/ethash/releases/tag/v0.7.1

‎CMakeLists.txt

+1-1
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 1.0.0-alpha.0)
22+
set(PROJECT_VERSION 1.0.0)
2323

2424
cable_configure_compiler(NO_STACK_PROTECTION)
2525
if(CABLE_COMPILER_GNULIKE)

‎include/ethash/version.h

+1-1
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 "1.0.0-alpha.0"
9+
#define ETHASH_VERSION "1.0.0"
1010

1111
#ifdef __cplusplus
1212
namespace ethash

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def run(self):
6767

6868
setup(
6969
name='ethash',
70-
version='1.0.0-alpha.0',
70+
version='1.0.0',
7171
description=
7272
"C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm",
7373
url='https://github.com/chfast/ethash',

0 commit comments

Comments
 (0)
Please sign in to comment.