File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,18 @@ Changelog
3
3
+++++++++
4
4
5
5
6
- Unreleased
7
- ==========
6
+ 1.2.0 (2024-03-27)
7
+ ==================
8
8
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 `)
10
18
11
19
12
20
1.1.1 (2024-02-29)
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ build-backend = "flit_core.buildapi"
4
4
5
5
[project ]
6
6
name = " build"
7
- version = " 1.1.1"
8
7
description = " A simple, correct Python build frontend"
9
8
readme = " README.md"
10
9
requires-python = " >= 3.8"
@@ -31,7 +30,8 @@ urls.changelog = "https://build.pypa.io/en/stable/changelog.html"
31
30
urls.homepage = " https://build.pypa.io"
32
31
urls.issues = " https://github.com/pypa/build/issues"
33
32
urls.source = " https://github.com/pypa/build"
34
-
33
+ # Version read from __version__ field in __init__.py by Flit
34
+ dynamic = [" version" ]
35
35
dependencies = [
36
36
" packaging >= 19.1" ,
37
37
" pyproject_hooks" ,
Original file line number Diff line number Diff line change 18
18
from ._util import check_dependency
19
19
20
20
21
- __version__ = '1.1.1 '
21
+ __version__ = '1.2.0 '
22
22
23
23
__all__ = [
24
24
'__version__' ,
You can’t perform that action at this time.
0 commit comments