From f78e00f27f697fb7882a05a4f653e8ac986acc7d Mon Sep 17 00:00:00 2001 From: Gareth Simpson Date: Mon, 7 Jun 2021 05:11:45 +0100 Subject: [PATCH] JUst a version bump --- changelog.md | 3 +++ feeds/utils.py | 1 - setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index ccb34b7..25f642c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,7 @@ +### 1.0.0 +- No real changes, but this is fine. No more 0.x nonsense + ### 0.3.2 - bug fix release - `last_change` was not being saved diff --git a/feeds/utils.py b/feeds/utils.py index 9709a44..3e85604 100644 --- a/feeds/utils.py +++ b/feeds/utils.py @@ -184,7 +184,6 @@ def read_feed(source_feed, output=NullOutput()): source_feed.last_result = "Unhandled Case" output.write(str(ret)) except Exception as ex: - logging.error("Fetch feed error: " + str(ex)) source_feed.last_result = ("Fetch error:" + str(ex))[:255] source_feed.status_code = 0 output.write("\nFetch error: " + str(ex)) diff --git a/setup.py b/setup.py index 7227818..acc7bea 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name='django-feed-reader', - version='0.3.2', + version='1.0.0', description='An RSS feed reading library for Django.', long_description=long_description, long_description_content_type='text/markdown',