Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All notable changes to this project will be documented in this file.

## [0.3.0] — 2026-08-20

### Breaking Changes
- Minimum Python version raised to 3.11 (3.9 is end of life, 3.10 reaches it in October 2026)

### Security
- Refreshed `uv.lock` onto non-vulnerable releases of every flagged dependency
- GitHub Actions pinned to commit SHAs; the repository now requires SHA pinning
- Dependency policy documented in `SECURITY.md`

### Maintenance
- CI matrix now covers Python 3.11 to 3.14
- CI installs with `uv sync --locked`, so the committed lockfile is what gets tested
- Dependabot configured for GitHub Actions only
- Regenerated `uv.lock`, which had drifted from `pyproject.toml`

No change to metric computation: `src/banos/` and the golden fixtures are unchanged.

## [0.2.0] — 2026-03-19

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "banos"
version = "0.2.3"
version = "0.3.0"
description = "Behavior ANnOtation Score: ethological metrics for evaluating behavior annotation quality"
readme = "README.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion src/banos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from __future__ import annotations

__version__ = "0.2.3"
__version__ = "0.3.0"

import pandas as pd

Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading