From e11c1beb26b5260a0a0c52c02dfc7b2bad4e078d Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 9 Nov 2025 20:15:53 -0500 Subject: [PATCH 1/2] Remove hatchling pin --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d83db24..76ff46c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["hatchling>=1.20"] +requires = ["hatchling"] build-backend = "hatchling.build" [project] @@ -34,7 +34,7 @@ classifiers = [ ] dependencies = [ - "hatchling>=1.20", + "hatchling", "hatch-build>=0.4,<0.5", "pydantic", ] From bc3c1eebf32156ef014c13200e02910945275361 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 9 Nov 2025 20:19:06 -0500 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tim Paine <3105306+timkpaine@users.noreply.github.com> --- hatch_cpp/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hatch_cpp/__init__.py b/hatch_cpp/__init__.py index 67505b4..0bd8e49 100644 --- a/hatch_cpp/__init__.py +++ b/hatch_cpp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" from .config import * from .hooks import * diff --git a/pyproject.toml b/pyproject.toml index 76ff46c..b60a070 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [{name = "the hatch-cpp authors", email = "t.paine154@gmail.com"}] description = "Hatch plugin for C++ builds" readme = "README.md" license = { text = "Apache-2.0" } -version = "0.2.0" +version = "0.2.1" requires-python = ">=3.10" keywords = [ "hatch", @@ -74,7 +74,7 @@ Repository = "https://github.com/python-project-templates/hatch-cpp" Homepage = "https://github.com/python-project-templates/hatch-cpp" [tool.bumpversion] -current_version = "0.2.0" +current_version = "0.2.1" commit = true tag = false commit_args = "-s"