From 5a8aaf85d77a3e402ac91a32723970b2efd4b57e Mon Sep 17 00:00:00 2001 From: Stuart Gathman <stuart@gathman.org> Date: Thu, 9 Jun 2011 19:55:31 +0000 Subject: [PATCH] Release 0.9.5 --- Doxyfile | 2 +- Milter/__init__.py | 4 ++-- makefile | 4 ++-- pymilter.spec | 4 ++++ setup.py | 2 +- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Doxyfile b/Doxyfile index 3c9bff8..5f486e2 100644 --- a/Doxyfile +++ b/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = pymilter # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.9.3 +PROJECT_NUMBER = 0.9.5 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/Milter/__init__.py b/Milter/__init__.py index 1adfa51..26eecf5 100755 --- a/Milter/__init__.py +++ b/Milter/__init__.py @@ -8,7 +8,7 @@ # Copyright 2001,2009 Business Management Systems, Inc. # This code is under the GNU General Public License. See COPYING for details. -__version__ = '0.9.3' +__version__ = '0.9.5' import os import milter @@ -538,7 +538,7 @@ class Milter(Base): # change in configuration. factory = Milter -## @fn void set_flags(int flags); +## @fn set_flags(flags) # @brief Enable optional %milter actions. # Certain %milter actions need to be enabled before calling milter.runmilter() # or they throw an exception. diff --git a/makefile b/makefile index 5a08e5a..b943e04 100644 --- a/makefile +++ b/makefile @@ -2,8 +2,8 @@ web: doxygen rsync -ravK doc/html/ spidey2.bmsi.com:/Public/pymilter -VERSION=0.9.4 -CVSTAG=pymilter-0_9_4 +VERSION=0.9.5 +CVSTAG=pymilter-0_9_5 PKG=pymilter-$(VERSION) SRCTAR=$(PKG).tar.gz diff --git a/pymilter.spec b/pymilter.spec index 105d476..09f3a85 100644 --- a/pymilter.spec +++ b/pymilter.spec @@ -74,6 +74,10 @@ chmod a+x $RPM_BUILD_ROOT%{libdir}/start.sh rm -rf $RPM_BUILD_ROOT %changelog +* Wed Mar 02 2010 Stuart Gathman <stuart@bmsi.com> 0.9.5-1 +- Print milter.error for invalid callback return type. + (Since stacktrace is empty, the TypeError exception is confusing.) + * Wed Mar 02 2010 Stuart Gathman <stuart@bmsi.com> 0.9.4-1 - Handle IP6 in Milter.utils.iniplist() - python-2.6 diff --git a/setup.py b/setup.py index 006f298..135ca47 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ if sys.version < '2.2.3': DistributionMetadata.download_url = None # NOTE: importing Milter to obtain version fails when milter.so not built -setup(name = "pymilter", version = '0.9.4', +setup(name = "pymilter", version = '0.9.5', description="Python interface to sendmail milter API", long_description="""\ This is a python extension module to enable python scripts to -- GitLab