Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog][keepachangelog] and this
project adheres to [Semantic Versioning][semver].

## [Unreleased]
## [1.1.0] - 2026-06-28

### Added

Expand All @@ -13,9 +13,8 @@ project adheres to [Semantic Versioning][semver].

### Changed

- Included newer Python versions in CI scripting up to Python 3.10.
- Now also builds on PyPy3.
- Fix unit test for block size.
- Expanded CI coverage for newer Python versions and PyPy3.
- Fixed the unit test for block size.

## [1.0.0] (2018-02-19)

Expand Down Expand Up @@ -71,7 +70,7 @@ project adheres to [Semantic Versioning][semver].

- Initial commit by James Cleveland.

[Unreleased]: https://github.com/oohlaf/python-whirlpool/compare/v1.0.0...HEAD
[1.1.0]: https://github.com/oohlaf/python-whirlpool/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/oohlaf/python-whirlpool/compare/v0.3...v1.0.0
[0.3]: https://github.com/oohlaf/python-whirlpool/compare/v0.1...v0.3
[semver]: https://semver.org/spec/v2.0.0.html
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Whirlpool"
version = "1.0.1.dev0"
version = "1.1.0"
description = "Bindings for whirlpool hash reference implementation."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*,!=3.8.*"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, Extension

setup(
version='1.0.1.dev0',
version='1.1.0',
ext_modules=[Extension('whirlpool', ['whirlpool/pywhirlpool.c'], include_dirs=['lib'])],
data_files=[('whirlpool', ['lib/nessie.h', 'lib/Whirlpool.c'])],
test_suite='test',
Expand Down
Loading