From b996c62a5f1f5d643fb9a2be893911f6021dd0e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agust=C3=ADn=20Borgna?= <121866228+aborgna-q@users.noreply.github.com> Date: Wed, 11 Sep 2024 09:16:01 +0100 Subject: [PATCH] feat: Add `__version__` field to guppylang (#473) This gets auto-updated by release-please. Co-authored-by: Agustin Borgna --- guppylang/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guppylang/__init__.py b/guppylang/__init__.py index 32189089..28b01893 100644 --- a/guppylang/__init__.py +++ b/guppylang/__init__.py @@ -3,3 +3,7 @@ from guppylang.prelude import builtins, quantum from guppylang.prelude.builtins import Bool, Float, Int, List, linst, py from guppylang.prelude.quantum import qubit + +# This is updated by our release-please workflow, triggered by this +# annotation: x-release-please-version +__version__ = "0.9.0"