From f7102639b939bde473fc7539f10f0f22680738be Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Wed, 24 Nov 2021 06:49:07 -0600 Subject: [PATCH] Bump version to 0.10.0 --- setup.cfg | 2 +- src/skan/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 4e664997..beae79c6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ norecursedirs = doc [metadata] name = skan -version = 0.10.0rc2 +version = 0.10.0 url = https://jni.github.io/skan download_url = https://github.com/jni/skan license = BSD 3-Clause diff --git a/src/skan/__init__.py b/src/skan/__init__.py index b97142a8..584a5d4a 100644 --- a/src/skan/__init__.py +++ b/src/skan/__init__.py @@ -1,5 +1,5 @@ from .csr import skeleton_to_csgraph, branch_statistics, summarize, Skeleton -__version__ = '0.10.0rc2' +__version__ = '0.10.0' __all__ = ['skeleton_to_csgraph', 'branch_statistics', 'summarize', 'Skeleton']