From fc0e891bca93fd576e7f53f6408315e0843d8a6d Mon Sep 17 00:00:00 2001 From: Philipp Schlegel Date: Thu, 5 Sep 2024 16:35:12 +0100 Subject: [PATCH] bump version 0.2.11 -> 0.3.0 --- README.md | 9 +++++++++ flybrains/__version__.py | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ae7fa7..062a16e 100644 --- a/README.md +++ b/README.md @@ -149,6 +149,15 @@ Most templates come with a mesh e.g. for plotting via navis: ``` ## Changes +- `0.3.0` (01/08/24): + - **potentially breaking** as it may change transform paths: + - weights for `AliasTransforms` are now set to 0 (i.e. no cost) + - weights for simple `AffineTransforms` are set to 0.1 + - improved the mirror transforms for `FAFB14` and `FLYWIRE` based on a new `JRC2018F-FLYWIRE` CMTK transform (S. Cachero, Jefferis lab) + - added a symmetrizing transform for `FLYWIRE` + - added VNC mesh to `JRCFIB2022M`; it now has `.mesh`, `.mesh_brain`, `.mesh_vnc` + - fixed stray vertex in `FLYWIRE.mesh_whole_brain` + - some under-the-hood refactoring - `0.2.11` (23/07/24): fixed bounding box for `JRCFIB2022Mraw` - `0.2.10` (16/04/24): - added download for `JRCFIB2022M` (maleCNS) <-> `JRC2018M` transform (via Saalfeld lab) diff --git a/flybrains/__version__.py b/flybrains/__version__.py index 509ce38..bba549e 100644 --- a/flybrains/__version__.py +++ b/flybrains/__version__.py @@ -11,5 +11,5 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -__version__ = '0.2.11' -__version_vector__ = (0, 2, 11) +__version__ = '0.3.0' +__version_vector__ = (0, 3, 0)