Skip to content

Commit

Permalink
bump version 0.1.5 -> 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Apr 7, 2024
1 parent 4b5c2be commit e5a3a38
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions docs/source/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ repository.
* - Version
- Date
-
* - dev
* - 1.6.0
- ongoing
- - BREAKING:
- dropped support for Python 3.8, per `NEP 29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`_
- :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 <https://github.com/clbarnes/neurarrow>`_
- new (experimental) functions :func:`navis.read_parquet` and :func:`navis.write_parquet`
store skeletons and dotprops in parquet files (see `here <https://github.com/clbarnes/neurarrow>`_
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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions navis/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit e5a3a38

Please sign in to comment.