From f16f6d14aa84f39f1c3e1e0cfde31998b0fdd624 Mon Sep 17 00:00:00 2001 From: Andre Ambrosio Date: Mon, 20 Apr 2026 15:51:50 -0300 Subject: [PATCH] chore(exports): include __version__ in __all__ for explicit public API __version__ = '2.1.0' was defined at module level but omitted from __all__, meaning `from bsp_sdk import *` would not expose it and tools like `bsp_sdk.__version__` checks via __all__ introspection would miss it. Add it as the first entry under a 'Package metadata' comment. Co-Authored-By: Claude Sonnet 4.6 --- bsp_sdk/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bsp_sdk/__init__.py b/bsp_sdk/__init__.py index 48a72eb..25e63f0 100644 --- a/bsp_sdk/__init__.py +++ b/bsp_sdk/__init__.py @@ -45,6 +45,8 @@ __version__ = "2.1.0" __all__ = [ + # Package metadata + "__version__", # Clients "BSPClient", "BEOClient", "IEOBuilder", "BioRecordBuilder", "TaxonomyResolver",