From f2f8134e129c57de754349320788c2f5a9ac22a4 Mon Sep 17 00:00:00 2001 From: Graham Hukill Date: Thu, 14 Aug 2025 16:17:51 -0400 Subject: [PATCH] Bump version to v3.0 Why these changes are being introduced: The shift to elevating dataset metadata as an expected and required asset, and utilizing DuckDB context's for metadata and data retrieval is a sizable and breaking change. Feels like this warrants a major version bump. How this addresses that need: * Bumps internal library version to 3.0 Side effects of this change: * `make update` commands from TIMDEX components will pickup this new version Relevant ticket(s): * https://mitlibraries.atlassian.net/browse/TIMX-537 --- timdex_dataset_api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timdex_dataset_api/__init__.py b/timdex_dataset_api/__init__.py index ca8b892..fb1b437 100644 --- a/timdex_dataset_api/__init__.py +++ b/timdex_dataset_api/__init__.py @@ -4,7 +4,7 @@ from timdex_dataset_api.metadata import TIMDEXDatasetMetadata from timdex_dataset_api.record import DatasetRecord -__version__ = "2.3.0" +__version__ = "3.0.0" __all__ = [ "DatasetRecord",