From: W. Trevor King Date: Fri, 11 Oct 2013 15:30:12 +0000 (-0700) Subject: Bump to version 3.7 X-Git-Tag: v3.7^0 X-Git-Url: http://git.tremily.us/?p=rss2email.git;a=commitdiff_plain;h=5ec34904bb8d9bb014721c69c2f455752a282a24 Bump to version 3.7 Signed-off-by: W. Trevor King --- diff --git a/CHANGELOG b/CHANGELOG index 5f1e7b7..62f5ccd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v3.7 (unreleased) +v3.7 (2013-10-11) * Fix fallback for titles that contain malformed HTML. * Fix atomic saves to avoid garbling config and data files if the disk is full. * Convert the `friendly-name` boolean to the new `name-format` setting. This allow users to customize how the friendly name is constructed. diff --git a/README b/README index de4057c..2e1f0b7 100644 --- a/README +++ b/README @@ -59,12 +59,12 @@ from several equivalent formats. 1. A ``.zip`` file (suggested for Microsoft Windows users):: - $ wget https://github.com/wking/rss2email/archive/v3.6.zip + $ wget https://github.com/wking/rss2email/archive/v3.7.zip $ unzip rss2email-*.zip 2. A ``.tar.gz`` file (suggested for everyone else):: - $ wget https://github.com/wking/rss2email/archive/v3.6.tar.gz + $ wget https://github.com/wking/rss2email/archive/v3.7.tar.gz $ tar xvf rss2email*.tar.gz 3. A Git_ checkout (suggested for developers):: diff --git a/rss2email/__init__.py b/rss2email/__init__.py index d58209c..ee2a867 100644 --- a/rss2email/__init__.py +++ b/rss2email/__init__.py @@ -21,7 +21,7 @@ import logging as _logging import sys as _sys -__version__ = '3.6' +__version__ = '3.7' __url__ = 'https://github.com/wking/rss2email' __author__ = 'W. Trevor King' __email__ = 'rss2email@tremily.us'