From 675e19a8fe26aa9bb2f4e4edd8005fc5d2b224c7 Mon Sep 17 00:00:00 2001 From: Cameron Brooks Date: Sat, 27 Jun 2026 21:15:13 -0400 Subject: [PATCH] chore(release): bump to 0.2.0 Adds on_action //action delivery (#25), list_ports() + position() (#26) for the fiberpath machine cutover (fiberpath/fiberpath#195). --- marlin_host/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/marlin_host/__init__.py b/marlin_host/__init__.py index 72ee9b2..4843783 100644 --- a/marlin_host/__init__.py +++ b/marlin_host/__init__.py @@ -44,4 +44,4 @@ "reset_line_number", ] -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index 3d53fb9..fa58098 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "marlin-host" -version = "0.1.0" +version = "0.2.0" description = "Host-side Python library for the Marlin firmware serial protocol." readme = "README.md" requires-python = ">=3.11"