From b031f6eb9a167b546247601a3461de5ddacf6d1c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 13 Feb 2013 09:32:40 -0500 Subject: [PATCH] Bump to version 3.0 Changes since 2.71: * State storage split into a static configuration file (usually `~/.config/rss2email.cfg`) and a dynamic JSON data file (usually `~/.local/share/rss2email.json`). * The static configuration file is parsed with Python's ConfigParser class, which allows for default settings that can be overridden on a global or per-feed basis. You'll have to translate your old config to the new format by hand when you upgrade. * Emailed messages now have Message-IDs. * Feeds can be indexed by name as well as index (e.g. `r2e run my-feed`). * Restructured as a package with submodules instead of a single module. This makes dependencies between various portions of rss2email more explicit. * Converted to Python >=3.2, for more consistent Unicode handling, exception chaining, and argparse (although argparse is also in 2.7). * Packaged with setup.py and distutils, in case you want to install rss2email instead of running it from a Git checkout or unpacked tarball. * Added a test suite (run with `./test/test.py`). * Added a man page, based on the version in the Debian package. * Require Signed-off-by lines in new commit messages, following the Linux and Git projects. * Assorted cleanups and bug fixes. Signed-off-by: W. Trevor King --- rss2email/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rss2email/__init__.py b/rss2email/__init__.py index 071cc31..7e1e20a 100644 --- a/rss2email/__init__.py +++ b/rss2email/__init__.py @@ -21,7 +21,7 @@ import logging as _logging import sys as _sys -__version__ = '2.71' +__version__ = '3.0' __url__ = 'http://rss2email.infogami.com' __author__ = 'W. Trevor King' __copyright__ = '(C) 2004 Aaron Swartz. GNU GPL 2 or 3.' -- 2.26.2