From ea4ca8049553c21cea1af1cccc26e3ffdccde00e Mon Sep 17 00:00:00 2001 From: Liam DeVoe Date: Mon, 6 Jan 2025 23:00:24 -0500 Subject: [PATCH] add changelog --- docs-src/changelog.md | 6 ++++++ src/hypofuzz/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs-src/changelog.md b/docs-src/changelog.md index ebf8585..07550fa 100644 --- a/docs-src/changelog.md +++ b/docs-src/changelog.md @@ -2,6 +2,12 @@ HypoFuzz uses [calendar-based versioning](https://calver.org/), with a `YY-MM-patch` format. +## 25.01.2 + +Hypofuzz now uses [`sys.monitoring`](https://docs.python.org/3/library/sys.monitoring.html) for coverage instrumentation on python 3.12+, resulting in considerable speedups for recent python versions. + +Also optimized database disk usage. + ## 25.01.1 The dashboard now respects the current setting profile's database when loading fuzzing progress. diff --git a/src/hypofuzz/__init__.py b/src/hypofuzz/__init__.py index fb58042..a7d649f 100644 --- a/src/hypofuzz/__init__.py +++ b/src/hypofuzz/__init__.py @@ -1,4 +1,4 @@ """Adaptive fuzzing for property-based tests using Hypothesis.""" -__version__ = "25.01.1" +__version__ = "25.01.2" __all__: list = []