Skip to content

Commit 6d97b86

Browse files
committed
release 0.8.0
Signed-off-by: Filipe Laíns <[email protected]>
1 parent a3a4bf2 commit 6d97b86

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,24 @@ Changelog
33
+++++++++
44

55

6-
Unreleased
7-
==========
6+
0.8.0 (2021-05-22)
7+
==================
88

99
- Accept ``os.PathLike[str]`` in addition to ``str`` for paths in public
1010
API (`PR #392`_, Fixes `#372`_)
11-
1211
- Add schema validation for ``build-system`` table to check conformity
1312
with PEP 517 and PEP 518 (`PR #365`_, Fixes `#364`_)
14-
1513
- Better support for Python 3.11 (sysconfig schemes `PR #434`_, `PR #463`_, tomllib `PR #443`_, warnings `PR #420`_)
16-
1714
- Improved error printouts (`PR #442`_)
18-
1915
- Avoid importing packaging unless needed (`PR #395`_, Fixes `#393`_)
2016

17+
18+
Breaking Changes
19+
----------------
20+
21+
- Failure to create a virtual environment in the ``build.env`` module now raises
22+
``build.FailedProcessError`` (`PR #442`_)
23+
2124
.. _PR #365: https://github.com/pypa/build/pull/365
2225
.. _PR #392: https://github.com/pypa/build/pull/392
2326
.. _PR #395: https://github.com/pypa/build/pull/395

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = build
3-
version = 0.7.0
3+
version = 0.8.0
44
description = A simple, correct PEP 517 build frontend
55
long_description = file: README.md
66
long_description_content_type = text/markdown

src/build/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
build - A simple, correct PEP 517 build frontend
55
"""
66

7-
__version__ = '0.7.0'
7+
__version__ = '0.8.0'
88

99
import contextlib
1010
import difflib

0 commit comments

Comments
 (0)