Skip to content

Commit d5fb6fb

Browse files
authored
chore: prepare for 1.2.0 (#758)
* chore: prepare for 1.2.0 Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Update CHANGELOG.rst --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 1ae6eb1 commit d5fb6fb

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,18 @@ Changelog
33
+++++++++
44

55

6-
Unreleased
7-
==========
6+
1.2.0 (2024-03-27)
7+
==================
88

9-
- Dropped support for Python 3.7 (PR :pr:`743`)
9+
- Add ``--installer`` option, supporting ``pip`` and ``uv``. Added ``uv``
10+
extra.
11+
(PR :pr:`751`)
12+
- Improve console output and provide ``-v`` for dependency installation
13+
(PR :pr:`749`)
14+
- Avoid compiling unused bytecode when using ``pip``
15+
(PR :pr:`752`)
16+
- Dropped support for Python 3.7
17+
(PR :pr:`743`)
1018

1119

1220
1.1.1 (2024-02-29)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "build"
7-
version = "1.1.1"
87
description = "A simple, correct Python build frontend"
98
readme = "README.md"
109
requires-python = ">= 3.8"
@@ -31,7 +30,8 @@ urls.changelog = "https://build.pypa.io/en/stable/changelog.html"
3130
urls.homepage = "https://build.pypa.io"
3231
urls.issues = "https://github.com/pypa/build/issues"
3332
urls.source = "https://github.com/pypa/build"
34-
33+
# Version read from __version__ field in __init__.py by Flit
34+
dynamic = ["version"]
3535
dependencies = [
3636
"packaging >= 19.1",
3737
"pyproject_hooks",

src/build/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from ._util import check_dependency
1919

2020

21-
__version__ = '1.1.1'
21+
__version__ = '1.2.0'
2222

2323
__all__ = [
2424
'__version__',

0 commit comments

Comments
 (0)