diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 937818b3..be1386c7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ Changelog +++++++++ +1.0.1 (2023-09-06) +================== + +- Avoid CPython 3.8.17, 3.9.17, 3.10.12, and 3.11.4 tarfile symlink bug + triggered by adding ``data_filter`` in 1.0.0. + (PR :pr:`675`, fixes issue :issue:`674`) + 1.0.0 (2023-09-01) ================== diff --git a/pyproject.toml b/pyproject.toml index 6f22ce1c..f1106ef1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "build" -version = "1.0.0" +version = "1.0.1" description = "A simple, correct Python build frontend" readme = "README.md" requires-python = ">= 3.7" diff --git a/src/build/__init__.py b/src/build/__init__.py index bd4c2dd0..58756305 100644 --- a/src/build/__init__.py +++ b/src/build/__init__.py @@ -7,7 +7,7 @@ from __future__ import annotations -__version__ = '1.0.0' +__version__ = '1.0.1' import contextlib import difflib