diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d5d813..1eb1204 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ 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]. +## [1.1.2] - 2026-06-28 + +### Fixed + +- Forgot to update the version on the package metadata. + ## [1.1.1] - 2026-06-28 ### Fixed @@ -77,6 +83,7 @@ project adheres to [Semantic Versioning][semver]. - Initial commit by James Cleveland. +[1.1.2]: https://github.com/oohlaf/python-whirlpool/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/oohlaf/python-whirlpool/compare/v1.1.0...v1.1.1 [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 diff --git a/pyproject.toml b/pyproject.toml index 2373dab..9fb844e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [project] name = "Whirlpool" -version = "1.1.0" +version = "1.1.2" 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.*" diff --git a/setup.py b/setup.py index 72600a3..7601e32 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, Extension setup( - version='1.1.0', + version='1.1.2', ext_modules=[Extension('whirlpool', ['whirlpool/pywhirlpool.c'], include_dirs=['lib'])], data_files=[('whirlpool', ['lib/nessie.h', 'lib/Whirlpool.c'])], test_suite='test',