diff --git a/Milter/__init__.py b/Milter/__init__.py index b6ffd258a9c1b07b987e7259ee543393190c2f9e..8d8ac93af4776f389194eb70724c6f076bebee6c 100755 --- a/Milter/__init__.py +++ b/Milter/__init__.py @@ -9,7 +9,7 @@ # This code is under the GNU General Public License. See COPYING for details. from __future__ import print_function -__version__ = '1.0.1' +__version__ = '1.0.2' import os import re diff --git a/makefile b/makefile index 583ef99c613ce7a14baeca07c3ac938e55b55495..c673aee7d9b8e97f3bde6edcdcd09ea025ee126a 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ web: rsync -ravKk doc/html/ spidey2.bmsi.com:/Public/pymilter cd doc/html; zip -r ../../doc . -VERSION=1.0.1 +VERSION=1.0.2 PKG=pymilter-$(VERSION) SRCTAR=$(PKG).tar.gz diff --git a/py3milter.spec b/py3milter.spec index a580ec3afec30f81291e4a46869164dd3ef5324d..ae1f2d340875618321978e123f22e182f3d36f9d 100644 --- a/py3milter.spec +++ b/py3milter.spec @@ -10,7 +10,7 @@ Summary: Python interface to sendmail milter API Name: %{pythonbase}-pymilter -Version: 1.0.1 +Version: 1.0.2 Release: 1%{dist} Source: https://github.com/sdgathman/pymilter/archive/pymilter-%{version}.tar.gz Source1: pymilter.te @@ -96,6 +96,11 @@ if [ $1 -eq 0 ] ; then fi %changelog +* Tue Dec 13 2016 Stuart Gathman <stuart@gathman.org> 1.0.2-1 +- Fix the last setsymlist misspelling. Support in test framework and tests. +- Add @symlist decorator. +- Change body callback and a few other APIs to use bytes instead of str. + * Tue Sep 20 2016 Stuart Gathman <stuart@gathman.org> 1.0.1-1 - Support python3 diff --git a/pymilter.spec b/pymilter.spec index ad8872968769c028a40745bac9c391a27fe4eb13..aca8591c1b78a8921032464cc97bb761e9906acc 100644 --- a/pymilter.spec +++ b/pymilter.spec @@ -95,6 +95,11 @@ if [ $1 -eq 0 ] ; then fi %changelog +* Tue Dec 13 2016 Stuart Gathman <stuart@gathman.org> 1.0.2-1 +- Fix the last setsymlist misspelling. Support in test framework and tests. +- Add @symlist decorator. +- Change body callback and a few other APIs to use bytes instead of str. + * Tue Sep 20 2016 Stuart Gathman <stuart@gathman.org> 1.0.1-1 - Support python3 diff --git a/setup.py b/setup.py index 0dd3f084439411aacb456b7ddb49bb3c34f48935..1f9f3d8906a636d925a6eb25ceae2bfd03e8419a 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ if sys.version >= '3': print("modules=",modules) # NOTE: importing Milter to obtain version fails when milter.so not built -setup(name = "pymilter", version = '1.0.1', +setup(name = "pymilter", version = '1.0.2', description="Python interface to sendmail milter API", long_description="""\ This is a python extension module to enable python scripts to