aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2022-06-17 12:34:54 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2022-06-17 12:36:51 -0400
commitd1279c4ca7f29b6f98d784c7bf053c3b2ff11578 (patch)
tree67cf070c1ddfea1350a07f55ebc9d9e3105e73e5
parent5f1ee1d5ec47d333e32631351bfaee04936e87ea (diff)
downloadpatatt-d1279c4ca7f29b6f98d784c7bf053c3b2ff11578.tar.gz
Prepare for 0.5.0 releasev0.5.0
After a bit of a hiatus, we are ready to go with the 0.5 release. Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r--COPYING2
-rw-r--r--man/patatt.516
-rw-r--r--man/patatt.5.rst12
-rw-r--r--patatt/__init__.py4
4 files changed, 17 insertions, 17 deletions
diff --git a/COPYING b/COPYING
index 21906e3..916571d 100644
--- a/COPYING
+++ b/COPYING
@@ -1,6 +1,6 @@
The MIT-Zero License
-Copyright (c) 2021 by the Linux Foundation
+Copyright (C) 2021-2022 by the Linux Foundation
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/man/patatt.5 b/man/patatt.5
index fe8bb0c..b4cccba 100644
--- a/man/patatt.5
+++ b/man/patatt.5
@@ -1,8 +1,5 @@
.\" Man page generated from reStructuredText.
.
-.TH PATATT 5 "2021-09-10" "0.4.7" ""
-.SH NAME
-PATATT \- DKIM-like cryptographic patch attestation
.
.nr rst2man-indent-level 0
.
@@ -30,12 +27,15 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
+.TH "PATATT" 5 "2022-10-17" "0.5.0" ""
+.SH NAME
+PATATT \- DKIM-like cryptographic patch attestation
.SH SYNOPSIS
.sp
patatt {sign,validate,genkey,install\-hook} [options]
.SH DESCRIPTION
.sp
-This tool allows cryptographically signing patches sent via email
+This tools allows cryptographically signing patches sent via email
by using DKIM\-like message headers. This approach is both effective and
doesn\(aqt interfere with other code review tools the way inline or
detached PGP signatures do. For a full overview of core concepts and
@@ -103,13 +103,13 @@ $ chmod a+x .git/hooks/sendemail\-validate
.SH SUBCOMMANDS
.INDENT 0.0
.IP \(bu 2
-\fIpatatt sign\fP: sign stdin or RFC2822 files passed as arguments
+\fIsign\fP: sign stdin or RFC2822 files passed as arguments
.IP \(bu 2
-\fIpatatt validate\fP: basic validation for signed messages
+\fIvalidate\fP: basic validation for signed messages
.IP \(bu 2
-\fIpatatt genkey\fP: generate a new ed25519 keypair
+\fIgenkey\fP: generate a new ed25519 keypair
.IP \(bu 2
-\fIpatatt install\-hook\fP: install sendemail\-validate hook in the current repository
+\fIinstall\-hook\fP: install sendemail\-validate hook in the current repository
.UNINDENT
.sp
You can run \fBpatatt [subcommand] \-\-help\fP to see a summary of flags for
diff --git a/man/patatt.5.rst b/man/patatt.5.rst
index 12bb0bd..d131766 100644
--- a/man/patatt.5.rst
+++ b/man/patatt.5.rst
@@ -5,10 +5,10 @@ DKIM-like cryptographic patch attestation
-----------------------------------------
:Author: mricon@kernel.org
-:Date: 2021-09-10
+:Date: 2022-10-17
:Copyright: The Linux Foundation and contributors
:License: MIT-0
-:Version: 0.4.7
+:Version: 0.5.0
:Manual section: 5
SYNOPSIS
@@ -54,10 +54,10 @@ Or you can install it manually::
SUBCOMMANDS
-----------
-* *patatt sign*: sign stdin or RFC2822 files passed as arguments
-* *patatt validate*: basic validation for signed messages
-* *patatt genkey*: generate a new ed25519 keypair
-* *patatt install-hook*: install sendemail-validate hook in the current repository
+* *sign*: sign stdin or RFC2822 files passed as arguments
+* *validate*: basic validation for signed messages
+* *genkey*: generate a new ed25519 keypair
+* *install-hook*: install sendemail-validate hook in the current repository
You can run ``patatt [subcommand] --help`` to see a summary of flags for
each subcommand.
diff --git a/patatt/__init__.py b/patatt/__init__.py
index 7dfbe12..0ef2515 100644
--- a/patatt/__init__.py
+++ b/patatt/__init__.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
-# Copyright (C) 2021 by The Linux Foundation
+# Copyright (C) 2021-2022 by The Linux Foundation
# SPDX-License-Identifier: MIT-0
#
__author__ = 'Konstantin Ryabitsev <konstantin@linuxfoundation.org>'
@@ -49,7 +49,7 @@ OPT_HDRS = [b'message-id']
KEYCACHE = dict()
# My version
-__VERSION__ = '0.5-dev'
+__VERSION__ = '0.5.0'
MAX_SUPPORTED_FORMAT_VERSION = 1