From 8ae417e0c59b935ffd518bb9309ed19159c1adc3 Mon Sep 17 00:00:00 2001 From: Jonathan Tsai Date: Fri, 10 Oct 2025 18:12:50 -0700 Subject: [PATCH] Sync version files to 0.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates .bumpversion.cfg, docs/conf.py, and src/datapilot/__init__.py to match the version in setup.py (0.1.0) from the Pydantic v2 upgrade. This ensures all version references are consistent for the next bump2version command. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- src/datapilot/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e300c57..db71468 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.26 +current_version = 0.1.0 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 3a65f06..3d5fbde 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ year = "2024" author = "Altimate Inc." copyright = f"{year}, {author}" -version = release = "0.0.26" +version = release = "0.1.0" pygments_style = "trac" templates_path = ["."] diff --git a/src/datapilot/__init__.py b/src/datapilot/__init__.py index 1533102..3dc1f76 100644 --- a/src/datapilot/__init__.py +++ b/src/datapilot/__init__.py @@ -1 +1 @@ -__version__ = "0.0.26" +__version__ = "0.1.0"