Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare release #496

Merged
merged 1 commit into from
Apr 24, 2024
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/shared_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
Loading