From bc9d8c622b38b8d2f6fa77ab695e0234b1f02f8f Mon Sep 17 00:00:00 2001
From: "Stuart D. Gathman" <stuart@gathman.org>
Date: Tue, 13 Dec 2016 14:15:56 -0500
Subject: [PATCH] Release 1.0.2
---
Milter/__init__.py | 2 +-
makefile | 2 +-
py3milter.spec | 7 ++++++-
pymilter.spec | 5 +++++
setup.py | 2 +-
5 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/Milter/__init__.py b/Milter/__init__.py
index b6ffd25..8d8ac93 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 583ef99..c673aee 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 a580ec3..ae1f2d3 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 ad88729..aca8591 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 0dd3f08..1f9f3d8 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
--
GitLab