From 26a7076e80ca798b4d8abb5d1ed125913444807a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Mar 2026 14:24:35 +0000 Subject: [PATCH] chore(main): release 3.0.0 --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- vdd/__init__.py | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 348e68a..2114830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [3.0.0](https://github.com/corriander/vdd/compare/v2.0.2...v3.0.0) (2026-03-15) + + +### ⚠ BREAKING CHANGES + +* add a simple cli, drop legacy python support ([#17](https://github.com/corriander/vdd/issues/17)) +* comes with dropping python 3.8-3.10 support +* **deps:** 3.11+ required + +### Features + +* add a simple cli ([1e41e9e](https://github.com/corriander/vdd/commit/1e41e9ee1ea07c44459e8b028f0285b4f6ace0f2)) +* add a simple cli, drop legacy python support ([#17](https://github.com/corriander/vdd/issues/17)) ([aee3e81](https://github.com/corriander/vdd/commit/aee3e81f0ee1a81c9dec1c4a413351581274f73f)) + + +### Build System + +* **deps:** drop <3.11, add 3.12, 3.13; bump pandas/numpy ([1500153](https://github.com/corriander/vdd/commit/1500153db81f7b0a1c1dc751e80a6c4d87435c8d)) + ## [2.0.2](https://github.com/corriander/vdd/compare/v2.0.1...v2.0.2) (2026-03-15) diff --git a/pyproject.toml b/pyproject.toml index 269416c..85fe622 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vdd" -version = "2.0.2" +version = "3.0.0" description = "Tools for Value-Driven Design" authors = [ {name = "Alex Corrie", email = "ajccode@gmail.com"} diff --git a/vdd/__init__.py b/vdd/__init__.py index 63078ef..5ab0143 100644 --- a/vdd/__init__.py +++ b/vdd/__init__.py @@ -8,4 +8,4 @@ """ from . import coda, requirements -__version__ = '2.0.2' +__version__ = '3.0.0'