diff --git a/CHANGELOG.md b/CHANGELOG.md index 2904804..b9f4f34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.3.3 (2025-11-29) + +### Fix + +- **cli,exporters,docs**: make weasyprint optional and update pdf setup instructions + ## v0.3.2 (2025-11-21) ### Refactor diff --git a/pyproject.toml b/pyproject.toml index 5605021..7fc29c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dns-benchmark-tool" -version = "0.3.2" +version = "0.3.3" description = "Fast, comprehensive DNS performance testing with DNSSEC validation, DoH/DoT support, and enterprise features." readme = { file = "README-pypi.md", content-type = "text/markdown" } authors = [ @@ -110,7 +110,7 @@ addopts = "-ra -q" [tool.commitizen] name = "cz_conventional_commits" -version = "0.3.2" +version = "0.3.3" tag_format = "v$version" version_files = [ "pyproject.toml:version", diff --git a/src/dns_benchmark/__init__.py b/src/dns_benchmark/__init__.py index f9aa3e1..e19434e 100644 --- a/src/dns_benchmark/__init__.py +++ b/src/dns_benchmark/__init__.py @@ -1 +1 @@ -__version__ = "0.3.2" +__version__ = "0.3.3"