diff --git a/.zenodo.json b/.zenodo.json index b5d0bd6..fd42cf2 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -2,7 +2,7 @@ "description": "Translates isi web of knowledge files into python objects.", "license": "MIT", "title": "coreofscience/python-wostools", - "version": "v2.0.4", + "version": "v2.0.5", "upload_type": "software", "publication_date": "2018-08-13", "creators": [ @@ -25,7 +25,7 @@ "related_identifiers": [ { "scheme": "url", - "identifier": "https://github.com/coreofscience/python-wostools/tree/v2.0.4", + "identifier": "https://github.com/coreofscience/python-wostools/tree/v2.0.5", "relation": "isSupplementTo" }, { diff --git a/HISTORY.md b/HISTORY.md index 56dd919..06bb320 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ # History +## 2.0.5 (2020-08-15) + +- Fix and prevent distribution accidents. + ## 2.0.4 (2020-08-15) - Add issue to the articles plain dict output. diff --git a/setup.py b/setup.py index 02d3066..7825e29 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/coreofscience/python-wostools", - version="2.0.4", + version="2.0.5", zip_safe=False, long_description_content_type="text/markdown", ) diff --git a/wostools/__init__.py b/wostools/__init__.py index 03ad8c7..a75c4a8 100644 --- a/wostools/__init__.py +++ b/wostools/__init__.py @@ -2,7 +2,7 @@ __author__ = """Core of Science""" __email__ = "dev@coreofscience.com" -__version__ = "2.0.4" +__version__ = "2.0.5" from wostools.article import Article from wostools.lazy import LazyCollection