From e475206ae7f57aa796fad7c45e5c07f57524f55f Mon Sep 17 00:00:00 2001 From: Tom Mitchell Date: Fri, 18 Feb 2022 15:35:16 -0500 Subject: [PATCH] Bump version to 1.0.1 --- docs/conf.py | 2 +- sbol3/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 3afa537..1aa9c4d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Bryan Bartley and Tom Mitchell' # The full version, including alpha/beta/rc tags -release = '1.1' +release = '1.0.1' # -- General configuration --------------------------------------------------- diff --git a/sbol3/__init__.py b/sbol3/__init__.py index cda5acf..d4b3074 100644 --- a/sbol3/__init__.py +++ b/sbol3/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.1' +__version__ = '1.0.1' from .constants import * from .config import set_defaults, get_namespace, set_namespace diff --git a/setup.py b/setup.py index 45bd22e..2b54fdc 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='sbol3', - version='1.1', + version='1.0.1', description='Python implementation of SBOL 3 standard', python_requires='>=3.7', url='https://github.com/SynBioDex/pySBOL3',