From b5687f53784ec928148150939b7529a971df1ebd Mon Sep 17 00:00:00 2001 From: Daniel King <43149077+dakinggg@users.noreply.github.com> Date: Sat, 26 Oct 2024 22:41:06 -0700 Subject: [PATCH] version bump (#530) --- scispacy/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scispacy/version.py b/scispacy/version.py index 483380d..e71d13b 100644 --- a/scispacy/version.py +++ b/scispacy/version.py @@ -1,6 +1,6 @@ _MAJOR = "0" _MINOR = "5" -_REVISION = "4" +_REVISION = "5" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _REVISION)