From db73b0e46eb3ac4cbc05f5960c4d41f1c1dad626 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Wed, 6 Aug 2025 17:29:22 -0400 Subject: [PATCH 1/2] fix version in init --- hatch_rs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hatch_rs/__init__.py b/hatch_rs/__init__.py index f1bcaea..4cb0598 100644 --- a/hatch_rs/__init__.py +++ b/hatch_rs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.7" +__version__ = "0.1.0" from .hooks import hatch_register_build_hook from .plugin import HatchRustBuildHook From ed1c0300e75a16ab163dc238593af5ff1d2ac7ba Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Wed, 6 Aug 2025 17:29:24 -0400 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.1.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_rs/__init__.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hatch_rs/__init__.py b/hatch_rs/__init__.py index 4cb0598..9d281bb 100644 --- a/hatch_rs/__init__.py +++ b/hatch_rs/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" from .hooks import hatch_register_build_hook from .plugin import HatchRustBuildHook diff --git a/pyproject.toml b/pyproject.toml index f01e100..45a366e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [{name = "the hatch-rs authors", email = "t.paine154@gmail.com"}] description = "Hatch plugin for Rust builds" readme = "README.md" license = { text = "Apache-2.0" } -version = "0.1.0" +version = "0.1.1" requires-python = ">=3.9" keywords = [ "hatch", @@ -63,7 +63,7 @@ Repository = "https://github.com/python-project-templates/hatch-rs" Homepage = "https://github.com/python-project-templates/hatch-rs" [tool.bumpversion] -current_version = "0.1.0" +current_version = "0.1.1" commit = true tag = true commit_args = "-s"