Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,18 @@ Changelog
+++++++++


Unreleased
==========
1.2.0 (2024-03-27)
==================

- Dropped support for Python 3.7 (PR :pr:`743`)
- Add ``--installer`` option, supporting ``pip`` and ``uv``. Added ``uv``
extra.
(PR :pr:`751`)
- Improve console output and provide ``-v`` for dependency installation
(PR :pr:`749`)
- Avoid compiling unused bytecode when using ``pip``
(PR :pr:`752`)
- Dropped support for Python 3.7
(PR :pr:`743`)


1.1.1 (2024-02-29)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ build-backend = "flit_core.buildapi"

[project]
name = "build"
version = "1.1.1"
description = "A simple, correct Python build frontend"
readme = "README.md"
requires-python = ">= 3.8"
Expand All @@ -31,7 +30,8 @@ urls.changelog = "https://build.pypa.io/en/stable/changelog.html"
urls.homepage = "https://build.pypa.io"
urls.issues = "https://github.com/pypa/build/issues"
urls.source = "https://github.com/pypa/build"

# Version read from __version__ field in __init__.py by Flit
dynamic = ["version"]
dependencies = [
"packaging >= 19.1",
"pyproject_hooks",
Expand Down
2 changes: 1 addition & 1 deletion src/build/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from ._util import check_dependency


__version__ = '1.1.1'
__version__ = '1.2.0'

__all__ = [
'__version__',
Expand Down