From 58d4a94d5a9995109047f281c89a63a9055300b2 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Thu, 25 Apr 2024 23:17:12 -0700 Subject: [PATCH] Increment version to 1.0.3 for chemprop version fix --- synthemol/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthemol/_version.py b/synthemol/_version.py index 1bf01cf..eb76fde 100644 --- a/synthemol/_version.py +++ b/synthemol/_version.py @@ -1,6 +1,6 @@ """Contains the version information for synthemol.""" # major, minor, patch -version_info = 1, 0, 2 +version_info = 1, 0, 3 # Nice string for the version __version__ = '.'.join(map(str, version_info))