Skip to content

Commit

Permalink
prepare release (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeplf authored Apr 24, 2024
1 parent c7c1828 commit 4829811
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
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

0 comments on commit 4829811

Please sign in to comment.