From: W. Trevor King Date: Tue, 14 May 2013 07:47:22 +0000 (-0400) Subject: Bump to version 3.4 X-Git-Tag: v3.4^0 X-Git-Url: http://git.tremily.us/?p=rss2email.git;a=commitdiff_plain;h=64ade6dc410e49abd87dd80d2e785e9ab11690fc Bump to version 3.4 Signed-off-by: W. Trevor King --- diff --git a/CHANGELOG b/CHANGELOG index 882e362..4e386a9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v3.4 (unreleased) +v3.4 (2013-05-14) * Added post-processing hooks for user-specified message manipulation. * Added settings for IMAP delivery. The old `use-smtp` boolean has been replaced by a new `email-protocol` setting. Non-IMAP users should adjust their configuration to set `email-protocol` to either `sendmail` or `smtp`. diff --git a/README b/README index 50c8585..d1d0a00 100644 --- a/README +++ b/README @@ -58,12 +58,12 @@ from several equivalent formats. 1. A ``.zip`` file (suggested for Microsoft Windows users):: - $ wget https://github.com/wking/rss2email/archive/v3.3.zip + $ wget https://github.com/wking/rss2email/archive/v3.4.zip $ unzip rss2email-*.zip 2. A ``.tar.gz`` file (suggested for everyone else):: - $ wget https://github.com/wking/rss2email/archive/v3.3.tar.gz + $ wget https://github.com/wking/rss2email/archive/v3.4.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 3f8aafa..c4fa74d 100644 --- a/rss2email/__init__.py +++ b/rss2email/__init__.py @@ -21,7 +21,7 @@ import logging as _logging import sys as _sys -__version__ = '3.3' +__version__ = '3.4' __url__ = 'https://github.com/wking/rss2email' __author__ = 'W. Trevor King' __email__ = 'rss2email@tremily.us'