Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 4829811

Browse files
authored
prepare release (#496)
1 parent c7c1828 commit 4829811

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
v3.3.8
2+
======
3+
* Make ThreePointSoma use relative tolerance (494)
4+
* Fix incorrect warning types for `OnlyChild` and `DisconnectedNeurite` (#487)
5+
* Better error handling, allows for non-global errors and collecting the errors for a single morphology load,
6+
see https://morphio.readthedocs.io/en/latest/warnings.html for an example on how to use a `warning_handler` (#482)
7+
8+
Improvements:
9+
* work w/ clang17 (#486)
10+
* Turn on -Wno-poison-system-directories on clang (#489)
11+
* follow libsonata's example, and publish wheels that statically use hdf5, to reduce h5py version conflicts (#493)
12+
* update to pybind11 v2.12.0 (#495)
13+
114
v3.3.7
215
======
316
* Change license from LGPL-3.0 to Apache-2.0 #467

src/shared_utils.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ std::ostream& operator<<(std::ostream& os, ThreePointSomaStatus s) {
148148
os << "Three Point Soma: All three columns have the same coordinates.";
149149
break;
150150
case NotRadiusOffset:
151-
os << "Three Point Soma: The non-constant columns is not offset by +/- the radius from the initial sample.";
151+
os << "Three Point Soma: The non-constant columns is not offset by +/- the radius from the "
152+
"initial sample.";
152153
break;
153154
case Conforms:
154155
os << "Three Point Soma: conforms to specification";

0 commit comments

Comments
 (0)