From b1adfa3e336dcd7bc266870c786a68439b55abd5 Mon Sep 17 00:00:00 2001 From: Scott Kitterman Date: Sat, 17 Feb 2018 13:52:13 -0500 Subject: [PATCH] Update man/dknewkey.1 to mention use of k= with RSA and bump version for release. --- README | 2 +- man/dknewkey.1 | 6 ++++-- packaging/pydkim.spec | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README b/README index f388a3b..173675b 100644 --- a/README +++ b/README @@ -11,7 +11,7 @@ signing and verification. VERSION -This is dkimpy 0.7.0. +This is dkimpy 0.7.1. REQUIREMENTS diff --git a/man/dknewkey.1 b/man/dknewkey.1 index db1030d..c136205 100644 --- a/man/dknewkey.1 +++ b/man/dknewkey.1 @@ -135,7 +135,7 @@ dknewkey Generates new DKIM public/private key pairs .SH "VERSION" .IX Header "VERSION" -0\.7\.0 +0\.7\.1 .SH "DESCRIPTION" .IX Header "DESCRIPTION" @@ -148,7 +148,9 @@ BITS_REQUIRED variable. ed25519 keys do not have a variable size. For RSA keys, it uses openssl to do the generation. By default it assumes this is located at /usr/bin/openssl. This is controlled by the OPENSSL_BINARY variable. For ed25519 keys, PyNaCl (python-nacl in Debian and derivatives) is -used. +used. For RSA keys k=2ha256 is now included in the public DNS record to +prevent inadvertent use with the now obsolete sha1 hash algorithm (See RFC +8301). .SH "USAGE" .IX Header "USAGE" diff --git a/packaging/pydkim.spec b/packaging/pydkim.spec index db76ca5..e5bb59c 100644 --- a/packaging/pydkim.spec +++ b/packaging/pydkim.spec @@ -3,7 +3,7 @@ Summary: Python DKIM library Name: %{pythonbase}-pydkim -Version: 0.7 +Version: 0.7.1 Release: 1 Source0: http://hewgill.com/pydkim/pydkim-%{version}.tar.bz2 Patch: pydkim.patch diff --git a/setup.py b/setup.py index 193ff87..e4740b5 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ from distutils.core import setup import os -version = "0.7.0+" +version = "0.7.1" setup( name = "dkimpy",