Skip to content

Commit

Permalink
Merge branch 'main' into drop-py37
Browse files Browse the repository at this point in the history
  • Loading branch information
layday committed Feb 29, 2024
2 parents 3a42eba + da06973 commit 4e70782
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,22 @@ Changelog
next release
============

- Dropped support for Python 3.7 (PR :pr:`743`)


1.1.0 (2024-02-29)
==================

- Use external pip if available instead of installing, speeds up environment
setup with virtualenv slightly and venv significantly.
(PR :pr:`736`)
- Stopped injecting ``wheel`` as a build dependency automatically, in the
case of missing ``pyproject.toml`` -- by :user:`webknjaz`.
(:pr:`716`)
- Dropped support for Python 3.7 (PR :pr:`743`)
(PR :pr:`716`)
- Use ``importlib_metadata`` on Python <3.10.2 for bugfixes not present in
those CPython standard libraries (not required when bootstrapping) -- by
:user:`GianlucaFicarelli`.
(PR :pr:`693`, fixes issue :issue:`692`)


1.0.3 (2023-09-06)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "build"
version = "1.0.3"
version = "1.1.0"
description = "A simple, correct Python build frontend"
readme = "README.md"
requires-python = ">= 3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/build/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from __future__ import annotations


__version__ = '1.0.3'
__version__ = '1.1.0'

import contextlib
import difflib
Expand Down

0 comments on commit 4e70782

Please sign in to comment.