From 456228babde70a72eaaac99b99d0243f299fbbf2 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Thu, 21 Mar 2024 23:23:13 -0700 Subject: [PATCH] Increment version to 1.0.1 --- synthemol/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthemol/_version.py b/synthemol/_version.py index add938a..9f4d921 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, 0 +version_info = 1, 0, 1 # Nice string for the version __version__ = '.'.join(map(str, version_info))