Skip to content

Commit

Permalink
chore: prepare for 1.2.0 (#758)
Browse files Browse the repository at this point in the history
* chore: prepare for 1.2.0

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

* Update CHANGELOG.rst

---------

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Mar 27, 2024
1 parent 1ae6eb1 commit d5fb6fb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
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

0 comments on commit d5fb6fb

Please sign in to comment.