From 3852ba2a5d1cd49c297ab0d570b27807d6f982a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 19:53:42 +0000 Subject: [PATCH] chore: release 0.10.0 --- .github/release-please-manifest.json | 2 +- CHANGELOG.md | 17 +++++++++++++++++ hashpipe/__init__.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index dde7cab..d0ef0e9 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1 +1 @@ -{".":"0.9.2"} +{".":"0.10.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index aeace55..e493465 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.10.0](https://github.com/scop/hashpipe/compare/0.9.2...v0.10.0) (2026-05-12) + + +### Features + +* **argcomplete:** register key, prefix, and regex non-completions ([5accf80](https://github.com/scop/hashpipe/commit/5accf807f366e63aebf649748f14067421ada55a)) +* completion improvements ([8b6f42a](https://github.com/scop/hashpipe/commit/8b6f42a87afa9ddc41d8bb0796550621d1c1e15b)) + + +### Bug Fixes + +* don't overload internal digest module variable with different types ([20b257b](https://github.com/scop/hashpipe/commit/20b257b858eea040d28c95c8c097921952e638ed)) +* **mypy:** import skipping config with pytest 7 ([712843a](https://github.com/scop/hashpipe/commit/712843a6b1b35d0385a9c0e5b603502a4a961af4)) +* **pytype:** don't try to run for Python < 3.6 ([d34d722](https://github.com/scop/hashpipe/commit/d34d722dc14da1813acda0bf058c279b4612e93f)) +* **renovate:** config syntax ([b0a1130](https://github.com/scop/hashpipe/commit/b0a1130fe5d186742ad8923597a3d2836c489658)) +* **renovate:** config syntax ([c43c0ce](https://github.com/scop/hashpipe/commit/c43c0cede0d219ca26898396f9c556c6bfb10204)) + ### 0.9.2 (2020-01-12) ### Features diff --git a/hashpipe/__init__.py b/hashpipe/__init__.py index 3fccc8e..407a73d 100755 --- a/hashpipe/__init__.py +++ b/hashpipe/__init__.py @@ -27,7 +27,7 @@ # for hmac.digest only available in 3.7+ # mypy: no-warn-unused-ignores -__version__ = "0.9.2" +__version__ = "0.10.0" DEFAULT_ALGORITHM = "sha1"