diff --git a/HISTORY.rst b/HISTORY.rst index 3ba466a..6129e30 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ History ------- +2.0.1 (2024-06-10) +^^^^^^^^^^^^^^^^^^ +* Removed support for EOL Python 3.6 and 3.7 +* Minor documentation update (#153) +* Stopped using deepcopy when duplicating Namespace (#158 +* Restricting rdflib package version to "<7" (#156 +* Raise an exception when an empty URI is registered as a namespace (#142) +* Ensure rdflib 6+ returns bytes when serializing tests (fixed #151) +* Removed fancy label output for bundle + 2.0.0 (2020-11-01) ^^^^^^^^^^^^^^^^^^ * Removed support for EOL Python 2 diff --git a/setup.cfg b/setup.cfg index 13ad182..4a8ebf6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1 commit = True tag = True tag_name = {new_version} diff --git a/setup.py b/setup.py index 864d121..5d70e65 100755 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name="prov", - version="2.0.0", + version="2.0.1", description="A library for W3C Provenance Data Model supporting PROV-JSON, " "PROV-XML and PROV-O (RDF)", long_description=long_description, diff --git a/src/prov/__init__.py b/src/prov/__init__.py index ccfdede..9b10613 100644 --- a/src/prov/__init__.py +++ b/src/prov/__init__.py @@ -1,6 +1,6 @@ __author__ = "Trung Dong Huynh" __email__ = "trungdong@donggiang.com" -__version__ = "2.0.0" +__version__ = "2.0.1" __all__ = ["Error", "model", "read"]