From 1860b5777624fd4ef779fbce4978d3bdb8d19024 Mon Sep 17 00:00:00 2001 From: Tom Mitchell Date: Wed, 16 Feb 2022 10:06:12 -0500 Subject: [PATCH] Bump version to 1.0 --- docs/conf.py | 2 +- sbol3/__init__.py | 2 +- setup.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index d2967bb..1af370f 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.0rc1' +release = '1.0' # -- General configuration --------------------------------------------------- diff --git a/sbol3/__init__.py b/sbol3/__init__.py index 87f22c9..9102675 100644 --- a/sbol3/__init__.py +++ b/sbol3/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.0rc1' +__version__ = '1.0' from .constants import * from .config import set_defaults, get_namespace, set_namespace diff --git a/setup.py b/setup.py index af44b90..458d89c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='sbol3', - version='1.0rc1', + version='1.0', description='Python implementation of SBOL 3 standard', python_requires='>=3.7', url='https://github.com/SynBioDex/pySBOL3', @@ -14,7 +14,7 @@ # 3 - Alpha # 4 - Beta # 5 - Production/Stable - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', # Indicate who your project is intended for 'Intended Audience :: Developers', @@ -36,7 +36,7 @@ packages=['sbol3'], package_data={'sbol3': ['rdf/sbol3-shapes.ttl']}, install_requires=[ - # Require at least rdflib 6.0.1, and allow newer versions + # Require at least rdflib 6.1.1, and allow newer versions # of rdflib 6.x 'rdflib>=6.1.1,==6.*', 'python-dateutil~=2.8.2',