From 10fdccf3668d7538c3a5e50d48cabc90e7d9924a Mon Sep 17 00:00:00 2001 From: "Stuart D. Gathman" <stuart@gathman.org> Date: Wed, 17 Apr 2019 19:07:50 -0400 Subject: [PATCH] Release 1.0.4 --- Milter/__init__.py | 2 +- makefile | 2 +- milter-nomix.py | 2 +- pymilter.spec | 6 +++++- setup.py | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Milter/__init__.py b/Milter/__init__.py index e406b2e..4ff23ce 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.3' +__version__ = '1.0.4' import os import re diff --git a/makefile b/makefile index a3dc460..532253d 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ web: rsync -ravKk doc/html/ bmsi.com:/var/www/html/pymilter cd doc/html; zip -r ../../doc . -VERSION=1.0.3 +VERSION=1.0.4 PKG=pymilter-$(VERSION) SRCTAR=$(PKG).tar.gz diff --git a/milter-nomix.py b/milter-nomix.py index 671c54f..154285d 100644 --- a/milter-nomix.py +++ b/milter-nomix.py @@ -1,4 +1,4 @@ -## A very simple milter to prevent mixing of internal and external mail. +## A very simple sample milter to prevent mixing of internal and external mail. # Internal is defined as using one of a list of internal top level domains. # This code is open-source on the same terms as Python. diff --git a/pymilter.spec b/pymilter.spec index 0d52e60..c25d1f8 100644 --- a/pymilter.spec +++ b/pymilter.spec @@ -9,7 +9,7 @@ Summary: %{sum} Name: python-pymilter -Version: 1.0.3 +Version: 1.0.4 Release: 1%{?dist} Url: http://bmsi.com/pymilter Source: https://github.com/sdgathman/pymilter/archive/pymilter-%{version}.tar.gz @@ -138,6 +138,10 @@ if [ $1 -eq 0 ] ; then fi %changelog +* Wed Apr 17 2019 Stuart Gathman <stuart@gathman.org> - 1.0.4-1 +- New upstream release: cleanup unused files, additional platform support +- Minor doc updates + * Sun Dec 23 2018 Stuart Gathman <stuart@gathman.org> - 1.0.3-1 - New upstream release - patch step for python3 no longer required in build diff --git a/setup.py b/setup.py index 6ab5be6..5ce202a 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ libdirs = ["/usr/lib/libmilter"] # needed for Debian modules = ["mime"] # NOTE: importing Milter to obtain version fails when milter.so not built -setup(name = "pymilter", version = '1.0.3', +setup(name = "pymilter", version = '1.0.4', description="Python interface to sendmail milter API", long_description="""\ This is a python extension module to enable python scripts to -- GitLab