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

Commit 83bd5ad

Browse files
committed
ethash 1.1.0
Bump version: 1.0.1 → 1.1.0
1 parent cdb3c72 commit 83bd5ad

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-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 = 1.0.1
2+
current_version = 1.1.0
33
tag = True
44
sign_tags = True
55
tag_message = ethash {new_version}

CHANGELOG.md

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

3+
## [1.1.0] — 2025-02-13
4+
5+
- Added: Python type annotations.
6+
[234](https://github.com/chfast/ethash/pull/234)
7+
- Added: Support for recent Python versions and modern Python packaging.
8+
[239](https://github.com/chfast/ethash/pull/239)
9+
310
## [1.0.1] — 2023-04-03
411

512
- CMake and build improvements.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if(ETHASH_TESTING)
2020
endif()
2121

2222
project(ethash)
23-
set(PROJECT_VERSION 1.0.1)
23+
set(PROJECT_VERSION 1.1.0)
2424

2525
cable_configure_compiler(NO_STACK_PROTECTION)
2626
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 "1.0.1"
9+
#define ETHASH_VERSION "1.1.0"
1010

1111
#ifdef __cplusplus
1212
namespace ethash

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def run(self):
6666

6767
setup(
6868
name='ethash',
69-
version='1.0.1',
69+
version='1.1.0',
7070
description=
7171
"C/C++ implementation of Ethash – the Ethereum Proof of Work algorithm",
7272
url='https://github.com/chfast/ethash',

0 commit comments

Comments
 (0)