From 9d8eadcf38870924f3874fc7647b600fce2b0d2e Mon Sep 17 00:00:00 2001 From: Tom Mitchell Date: Tue, 8 Feb 2022 15:36:29 -0500 Subject: [PATCH] Bump version to 1.0b13 --- 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 5f8b642..f457efe 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.0b12' +release = '1.0b13' # -- General configuration --------------------------------------------------- diff --git a/sbol3/__init__.py b/sbol3/__init__.py index 3aaa72e..c24c25c 100644 --- a/sbol3/__init__.py +++ b/sbol3/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.0b12' +__version__ = '1.0b13' from .constants import * from .config import set_defaults, get_namespace, set_namespace diff --git a/setup.py b/setup.py index 6d914b5..b5c398d 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='sbol3', - version='1.0b12', + version='1.0b13', description='Python implementation of SBOL 3 standard', python_requires='>=3.7', url='https://github.com/SynBioDex/pySBOL3',