Skip to content

Commit

Permalink
chore: prepare for 1.1.0 (#744)
Browse files Browse the repository at this point in the history
* chore: update changelog

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

* chore: bump version to 1.1.0

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

---------

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Feb 29, 2024
1 parent 42231a7 commit da06973
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -6,9 +6,21 @@ Changelog
next release
============

Python 3.7 (past EoL) support will be removed.

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`)
(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
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.7"
Expand Down
2 changes: 1 addition & 1 deletion src/build/__init__.py
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 da06973

Please sign in to comment.