From 181b0fcfb10f4fa549c65a1ee27c023401eb281e Mon Sep 17 00:00:00 2001 From: Philipp Schlegel Date: Mon, 4 Apr 2022 19:30:01 +0100 Subject: [PATCH] bump version: 2.0.6 -> 2.1.0 --- docs/source/whats_new.rst | 9 +++++++++ pymaid/__init__.py | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/source/whats_new.rst b/docs/source/whats_new.rst index be8799f..78dcdfb 100644 --- a/docs/source/whats_new.rst +++ b/docs/source/whats_new.rst @@ -10,6 +10,15 @@ What's new? * - Version - Date - + * - 2.1.0 + - 04/04/22 + - With this release we mainly follow some renamed functions in ``navis`` but + we also make pymaid play more nicely with public CATMAID instances and + of course fix a couple bugs. + One important thing to mention is that the default `max_threads` for + :class:`pymaid.CatmaidInstance` is now 10 (down from 100). This also + applies to :func:`pymaid.connect_catmaid`. If your internet can handle + more connections, feel free to up it back to 100. * - 2.0.0 - 21/11/20 - This release marks a huge break in the way pymaid works: it is now diff --git a/pymaid/__init__.py b/pymaid/__init__.py index dd19a59..5932051 100644 --- a/pymaid/__init__.py +++ b/pymaid/__init__.py @@ -1,5 +1,5 @@ -__version__ = "2.0.6" -__version_vector__ = (2, 0, 6) +__version__ = "2.1.0" +__version_vector__ = (2, 1, 0) from . import config