diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e74152ac..6136a6ee 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,9 +6,21 @@ Changelog next release ============ +Python 3.7 (past EoL) support will be removed. + +1.1.0 (2024-02-29) +================== + +- Use external pip if available instead of installing, speeds up environment + setup with virtualenv slightly and venv significantly. + (PR :pr:`736`) - Stopped injecting ``wheel`` as a build dependency automatically, in the case of missing ``pyproject.toml`` -- by :user:`webknjaz`. - (:pr:`716`) + (PR :pr:`716`) +- Use ``importlib_metadata`` on Python <3.10.2 for bugfixes not present in + those CPython standard libraries (not required when bootstrapping) -- by + :user:`GianlucaFicarelli`. + (PR :pr:`693`, fixes issue :issue:`692`) 1.0.3 (2023-09-06) diff --git a/pyproject.toml b/pyproject.toml index 51ac743d..403ef5e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "build" -version = "1.0.3" +version = "1.1.0" 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 c92daba7..3c70aa71 100644 --- a/src/build/__init__.py +++ b/src/build/__init__.py @@ -7,7 +7,7 @@ from __future__ import annotations -__version__ = '1.0.3' +__version__ = '1.1.0' import contextlib import difflib