diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c8af899..ea507c4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +v3.3.8 +====== +* Make ThreePointSoma use relative tolerance (494) +* Fix incorrect warning types for `OnlyChild` and `DisconnectedNeurite` (#487) +* Better error handling, allows for non-global errors and collecting the errors for a single morphology load, + see https://morphio.readthedocs.io/en/latest/warnings.html for an example on how to use a `warning_handler` (#482) + +Improvements: +* work w/ clang17 (#486) +* Turn on -Wno-poison-system-directories on clang (#489) +* follow libsonata's example, and publish wheels that statically use hdf5, to reduce h5py version conflicts (#493) +* update to pybind11 v2.12.0 (#495) + v3.3.7 ====== * Change license from LGPL-3.0 to Apache-2.0 #467 diff --git a/src/shared_utils.cpp b/src/shared_utils.cpp index c51418f7..2b781f05 100644 --- a/src/shared_utils.cpp +++ b/src/shared_utils.cpp @@ -148,7 +148,8 @@ std::ostream& operator<<(std::ostream& os, ThreePointSomaStatus s) { os << "Three Point Soma: All three columns have the same coordinates."; break; case NotRadiusOffset: - os << "Three Point Soma: The non-constant columns is not offset by +/- the radius from the initial sample."; + os << "Three Point Soma: The non-constant columns is not offset by +/- the radius from the " + "initial sample."; break; case Conforms: os << "Three Point Soma: conforms to specification";