From ed308f1f4507182d8c0f67ee6ca288b6d73b1270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Fri, 1 Sep 2023 09:50:32 -0700 Subject: [PATCH] Release 1.0.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bernát Gábor --- CHANGELOG.rst | 4 ++-- pyproject.toml | 2 +- src/build/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4787ebd9..3f75ca2f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,8 +3,8 @@ Changelog +++++++++ -Unreleased -========== +1.0.0 (2023-09-01) +================== - Removed the ``toml`` library fallback; ``toml`` can no longer be used as a substitute for ``tomli`` diff --git a/pyproject.toml b/pyproject.toml index 6d2948c6..653c198b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "build" -version = "0.10.0" +version = "1.0.0" description = "A simple, correct Python build frontend" readme = "README.md" requires-python = ">= 3.7" diff --git a/src/build/__init__.py b/src/build/__init__.py index 78b65cfb..bd4c2dd0 100644 --- a/src/build/__init__.py +++ b/src/build/__init__.py @@ -7,7 +7,7 @@ from __future__ import annotations -__version__ = '0.10.0' +__version__ = '1.0.0' import contextlib import difflib