From e5a3a38f22b44caf68eed0b07ed4b92553cc04a6 Mon Sep 17 00:00:00 2001 From: Philipp Schlegel Date: Sun, 7 Apr 2024 16:26:02 +0100 Subject: [PATCH] bump version 0.1.5 -> 0.1.6 --- docs/source/whats_new.rst | 13 +++++++------ navis/__version__.py | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/source/whats_new.rst b/docs/source/whats_new.rst index ae1f3244..19019b06 100644 --- a/docs/source/whats_new.rst +++ b/docs/source/whats_new.rst @@ -15,26 +15,26 @@ repository. * - Version - Date - - * - dev + * - 1.6.0 - ongoing - - BREAKING: - dropped support for Python 3.8, per `NEP 29 `_ - :func:`navis.write_swc` no longer supports writing Dotprops to SWC files - Additions: - new property ``Treenode.surface_area`` - - new functions :func:`navis.read_parquet` and :func:`navis.write_parquet` - store skeletons and dotprops in parquet files (see - `here `_ + - new (experimental) functions :func:`navis.read_parquet` and :func:`navis.write_parquet` + store skeletons and dotprops in parquet files (see `here `_ for format specs) - new :func:`navis.read_nml` function to read single NML file (complements existing :func:`navis.read_nmx` files which are collections of NMLs) - new :class:`navis.NeuronConnector` class for creating connectivity graphs - from groups neurons with consistent connector IDs. + from groups neurons with consistent connector IDs. + - new method for CMTKtransforms: :meth:`navis.transforms.CMTKTransform.xform_image` - Improvements: - improved performance for: - adding recordings to ``CompartmentModel`` - :func:`navis.heal_skeleton` and :func:`navis.resample_skeleton` - - improved logic for splitting NBLAST across cores + - improved logic for splitting NBLASTs across multiple cores - :func:`navis.xform_brain`: now allows to specify multiple intermediate template spaces through the ``via`` parameter and to ignore spaces through the ``avoid`` parameter @@ -51,6 +51,7 @@ repository. - fixed a bug in :func:`navis.resample_skeleton` - fixed an occasional issue when plotting skeletons with radii - fix bug in :func:`navis.subset_neuron` that caused connectors to be dropped when using mask + - fixed a bug in :func:`navis.despike_skeleton` that cause the `reverse` argument to be ignored - fixed two small bugs in :func:`navis.interfaces.neuprint.fetch_mesh_neuron` * - 1.5.0 - 27/07/23 diff --git a/navis/__version__.py b/navis/__version__.py index bd67abc2..8936d856 100644 --- a/navis/__version__.py +++ b/navis/__version__.py @@ -11,5 +11,5 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -__version__ = "1.5.0" -__version_vector__ = (1, 5, 0) +__version__ = "1.6.0" +__version_vector__ = (1, 6, 0)