From e795db7c69691c91d6663d796eed8ac563012844 Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Fri, 9 Mar 2018 18:08:42 -0500 Subject: [PATCH] Start 0.9.5: Beta 1 (updated Alpha -> Beta warning in README and trove classifiers) --- CHANGES | 3 +++ README | 7 ++++--- dkimpy_milter/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index c8ac920..1fae732 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +0.9.5 UNRELEASED + - Beta 1 (updated Alpha -> Beta warning in README and trove classifiers) + 0.9.4 2018-03-09 - Create PID directory if it is missing - Fix crash when verifying if domain for signing was not set diff --git a/README b/README index 8aa4c0b..4ef8cae 100644 --- a/README +++ b/README @@ -90,6 +90,7 @@ The python DKIM library, dkimpy, requires the entire message being signed or verified to be in memory, so dkimpy-milter does not write messages out to a temp file. This may impact performance on low-memory systems. -WARNING: This is an alpha grade release to support interoperability testing with -Ed25519 signatures and basic functionality. It is known to be incomplete and -not suitable for general use. +This is an beta grade release to support interoperability testing with Ed25519 +signatures sufficient functionality for basic use. The documented +functionality has been implemented and at least partially tested. It is free +of known major defects, but is not fully tested in a variety of environments. diff --git a/dkimpy_milter/__init__.py b/dkimpy_milter/__init__.py index a8d1261..11f6ca5 100644 --- a/dkimpy_milter/__init__.py +++ b/dkimpy_milter/__init__.py @@ -42,7 +42,7 @@ from dkimpy_milter.util import read_keyfile from dkimpy_milter.util import own_socketfile from dkimpy_milter.util import fold -__version__ = "0.9.4" +__version__ = "0.9.5" FWS = re.compile(r'\r?\n[ \t]+') class dkimMilter(Milter.Base): diff --git a/setup.py b/setup.py index d03fb65..ded83cd 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ setup( description=description, download_url = "https://pypi.python.org/pypi/dkimpy-milter", classifiers= [ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Environment :: No Input/Output (Daemon)', 'Intended Audience :: System Administrators', 'License :: OSI Approved :: GNU General Public License (GPL)',