From a9d1e135cc00e801289de23c57e3ee602416fdc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Arbel=C3=A1ez?= Date: Fri, 16 Oct 2020 00:06:14 -0500 Subject: [PATCH] Prepare bugfix release --- .zenodo.json | 4 ++-- HISTORY.md | 4 ++++ setup.py | 2 +- wostools/__init__.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.zenodo.json b/.zenodo.json index bc962d2..a79c2dd 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": "v3.0.1", + "version": "v3.0.2", "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/v3.0.1", + "identifier": "https://github.com/coreofscience/python-wostools/tree/v3.0.2", "relation": "isSupplementTo" }, { diff --git a/HISTORY.md b/HISTORY.md index 4738e09..893d1b1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ # History +## 3.0.2 (2020-10-15) + +- Fix packaging accident to allow package to install correclty. + ## 3.0.1 (2020-10-15) - Clear logging error channel. diff --git a/setup.py b/setup.py index a5950e5..15673ec 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/coreofscience/python-wostools", - version="3.0.1", + version="3.0.2", zip_safe=False, long_description_content_type="text/markdown", ) diff --git a/wostools/__init__.py b/wostools/__init__.py index 93c81bf..5ecc362 100644 --- a/wostools/__init__.py +++ b/wostools/__init__.py @@ -2,7 +2,7 @@ __author__ = """Core of Science""" __email__ = "dev@coreofscience.com" -__version__ = "3.0.1" +__version__ = "3.0.2" from wostools.article import Article from wostools.cached import CachedCollection