From b421501443f4a69338ffeb5a3803e44453267746 Mon Sep 17 00:00:00 2001 From: jhnwu3 Date: Mon, 9 Mar 2026 16:20:27 -0500 Subject: [PATCH] small fix so that agents no longer get confused that its 1.14 installed --- pyhealth/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhealth/__init__.py b/pyhealth/__init__.py index 722483dcb..086e68849 100755 --- a/pyhealth/__init__.py +++ b/pyhealth/__init__.py @@ -3,7 +3,7 @@ from pathlib import Path import sys -__version__ = "1.1.4" +__version__ = "2.0.0" # package-level cache path BASE_CACHE_PATH = os.path.join(str(Path.home()), ".cache/pyhealth/")