diff --git a/docs/changelog.md b/docs/changelog.md index 585b5f2..a9f5aff 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,12 @@ title: Changelog `pcg_skel` aims to follow semantic versioning, such that major versions are potentially backward-incompatible, minor versions add new features, and patch versions are bug fixes. This changelog is a summary of the changes in each version. +## [1.0.5] + +### Features + +* Adds an optional `return_quality` argument to `features.add_is_axon_annotation` to optionally return the split quality value. + ## [1.0.4] ### Fixes diff --git a/pcg_skel/__init__.py b/pcg_skel/__init__.py index 24ff135..c540d80 100644 --- a/pcg_skel/__init__.py +++ b/pcg_skel/__init__.py @@ -4,4 +4,4 @@ from . import utils from . import chunk_tools -__version__ = "1.0.4" +__version__ = "1.0.5"