Skip to content

Commit da06973

Browse files
authored
chore: prepare for 1.1.0 (#744)
* chore: update changelog Signed-off-by: Henry Schreiner <[email protected]> * chore: bump version to 1.1.0 Signed-off-by: Henry Schreiner <[email protected]> --------- Signed-off-by: Henry Schreiner <[email protected]>
1 parent 42231a7 commit da06973

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

Diff for: CHANGELOG.rst

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,21 @@ Changelog
66
next release
77
============
88

9+
Python 3.7 (past EoL) support will be removed.
10+
11+
1.1.0 (2024-02-29)
12+
==================
13+
14+
- Use external pip if available instead of installing, speeds up environment
15+
setup with virtualenv slightly and venv significantly.
16+
(PR :pr:`736`)
917
- Stopped injecting ``wheel`` as a build dependency automatically, in the
1018
case of missing ``pyproject.toml`` -- by :user:`webknjaz`.
11-
(:pr:`716`)
19+
(PR :pr:`716`)
20+
- Use ``importlib_metadata`` on Python <3.10.2 for bugfixes not present in
21+
those CPython standard libraries (not required when bootstrapping) -- by
22+
:user:`GianlucaFicarelli`.
23+
(PR :pr:`693`, fixes issue :issue:`692`)
1224

1325

1426
1.0.3 (2023-09-06)

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "build"
7-
version = "1.0.3"
7+
version = "1.1.0"
88
description = "A simple, correct Python build frontend"
99
readme = "README.md"
1010
requires-python = ">= 3.7"

Diff for: src/build/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from __future__ import annotations
88

99

10-
__version__ = '1.0.3'
10+
__version__ = '1.1.0'
1111

1212
import contextlib
1313
import difflib

0 commit comments

Comments
 (0)