Skip to content

Commit 18a2190

Browse files
author
1
committed
chore: bump to v0.3.0
- Update version to 0.3.0 - Update CHANGELOG with new features
1 parent 8537828 commit 18a2190

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.0] - 2025-04-10
9+
10+
### Added
11+
- Add output similarity scoring via `similarity.py`
12+
- Add Parquet serialization for snapshots in `parquet.py`
13+
814
## [0.2.0] - 2026-04-10
915

1016
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "modeldiff"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Behavioral regression testing for LLMs. Capture outputs, diff behavior, detect drift — pytest for model upgrades."
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

src/modeldiff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""modeldiff — behavioral regression testing for LLMs."""
22

3-
__version__ = "0.2.0"
3+
__version__ = "0.3.0"
44

55
from modeldiff._types import (
66
ChangeType,

0 commit comments

Comments
 (0)