From 5ee3fdbfbc4f940a3d37a8fb2fa4dcc8f3e94d5e Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Mon, 22 Aug 2011 21:42:39 +0200 Subject: [PATCH] urlwatch 1.13 released --- ChangeLog | 9 +++++++++ MANIFEST.in | 1 + urlwatch | 2 +- urlwatch.1 | 2 +- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 361c3b8..fb811c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -101,3 +101,12 @@ * Update website URL, contact info and copyright years * urlwatch 1.12 released +2011-08-22 Thomas Perl + * Support for POST requests (suggested by Sébastien Fricker) + * Use concurrent.futures for parallel execution (needs Python 3.2 + or "futures" from PyPI for older Python versions, including 2.x) + * Various code changes to enhance compatibility with Python 3 + * Add convert-to-python3.sh script to convert the codebase into + Python 3 format using the "2to3" utility included with Python + * urlwatch 1.13 released + diff --git a/MANIFEST.in b/MANIFEST.in index ee459c4..b7b4d0e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include ChangeLog COPYING urlwatch.1 recursive-include examples * +include convert-to-python3.sh diff --git a/urlwatch b/urlwatch index b56aa4e..01b5d22 100755 --- a/urlwatch +++ b/urlwatch @@ -37,7 +37,7 @@ __author__ = 'Thomas Perl ' __copyright__ = 'Copyright 2008-2011 Thomas Perl' __license__ = 'BSD' __homepage__ = 'http://thp.io/2008/urlwatch/' -__version__ = '1.12' +__version__ = '1.13' user_agent = '%s/%s (+http://thp.io/2008/urlwatch/info.html)' % (pkgname, __version__) diff --git a/urlwatch.1 b/urlwatch.1 index 7677030..799e663 100644 --- a/urlwatch.1 +++ b/urlwatch.1 @@ -1,4 +1,4 @@ -.TH URLWATCH "1" "February 2011" "urlwatch 1.12" "User Commands" +.TH URLWATCH "1" "August 2011" "urlwatch 1.13" "User Commands" .SH NAME urlwatch \- Watch web pages and arbitrary URLs for changes .SH SYNOPSIS -- 2.11.4.GIT