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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ Versions follow [Semantic Versioning](https://semver.org) (`<major>.<minor>.<pat

## Unreleased

## [0.9.0] - 2026-08-13

### Changed

- Build/dev tooling migrated from `hatch` to `uv` + `Make`; all `make` recipes now wrap `uv run` and no manual environment activation is needed ([#109](https://github.com/DuguidLab/mesoscopy/pull/109)).
- `register`'s `--crop-x`/`--crop-y` options replaced with `--output-width`/`--output-height`; registered output now consistently matches the ABA template shape (or a given output shape) instead of a crop region ([#110](https://github.com/DuguidLab/mesoscopy/pull/110)).
- Landmark identification GUI reworked to make point identification more explicit and warn when landmarks are missing ([#110](https://github.com/DuguidLab/mesoscopy/pull/110)).

### Fixed

- Registration coordinates read inconsistently as xy vs. yx in places, causing warped/misaligned output ([#110](https://github.com/DuguidLab/mesoscopy/pull/110)).
- Landmark GUI could silently drop a point if it was deleted, corrupting downstream registration.
- ABA scaling issue affecting registered output size.
- Automagic landmark file discovery and max-intensity-projection discovery for NWB files.
- Landmark pair name matching, plus a new QA check for registration fit quality.
- NWB update step storing an incorrect transform value after registration.
- Docs generation.

### Performance

- Registration output array is now preallocated instead of built as a Python list and stacked.

## [0.8.0] - 2026-08-06

### Added
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "mesoscopy"
version = "0.8.0"
version = "0.9.0"
description = "Analysis pipeline for rodent widefield calcium imaging data."
readme = "README.md"
requires-python = ">=3.12"
Expand Down Expand Up @@ -222,4 +222,4 @@ exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
]
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