Skip to content

Commit df13caf

Browse files
committed
0.8.4 (20230718)
1 parent 22178c7 commit df13caf

File tree

12 files changed

+31
-18
lines changed

12 files changed

+31
-18
lines changed

CHANGELOG

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
CHANGELOG
22
=========
33

4+
0.8.4 (20230718)
5+
6+
- doc - Add WHAT IS DANE? section
7+
- Add _ to set of DNS name chars that don't require idn2
8+
- rollover - Divert certbot stdout to stderr to aid output adapters
9+
- Prevent premature rollover (refuse if tlsa-check would fail)
10+
- Terminate danectl when `idna` in subprocess requires idn2 but fails to find it
11+
- Makefile - Add make help (default)
12+
413
0.8.3 (20230419)
514

615
- smimea/smimea-check: Improve email address identification (spotted by John Scott)
@@ -157,7 +166,7 @@ CHANGELOG
157166
URL: https://raf.org/danectl
158167
GIT: https://github.com/raforg/danectl
159168
GIT: https://codeberg.org/raforg/danectl
160-
Date: 20230419
169+
Date: 20230718
161170
Author: raf <raf@raf.org>
162171

163172

COPYING

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ COPYING
22
=======
33
danectl - DNSSEC DANE implementation manager
44
https://raf.org/danectl
5+
https://github.com/raforg/danectl
6+
https://codeberg.org/raforg/danectl
57

68
Copyright (C) 2021-2023 raf <raf@raf.org>
79

@@ -23,6 +25,6 @@ Copyright (C) 2021-2023 raf <raf@raf.org>
2325
URL: http://raf.org/danectl
2426
GIT: https://github.com/raforg/danectl
2527
GIT: https://codeberg.org/raforg/danectl
26-
Date: 20230419
28+
Date: 20230718
2729
Author: raf <raf@raf.org>
2830

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# danectl - DNSSEC DANE implementation manager
22
# https://raf.org/danectl
3+
# https://github.com/raforg/danectl
4+
# https://codeberg.org/raforg/danectl
35
#
46
# Copyright (C) 2021-2023 raf <raf@raf.org>
57
#
@@ -17,7 +19,7 @@
1719
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1820
#
1921

20-
# 20230419 raf <raf@raf.org>
22+
# 20230718 raf <raf@raf.org>
2123

2224
DESTDIR :=
2325
PREFIX := $(DESTDIR)/usr/local
@@ -30,8 +32,8 @@ APP_MANDIR := $(MAN_INSDIR)/man$(APP_MANSECT)
3032
APP_MANSECTNAME := User Commands
3133

3234
DANECTL_NAME=danectl
33-
DANECTL_VERSION=0.8.3
34-
DANECTL_DATE=20230419
35+
DANECTL_VERSION=0.8.4
36+
DANECTL_DATE=20230718
3537
DANECTL_ID=$(DANECTL_NAME)-$(DANECTL_VERSION)
3638
DANECTL_DIST=$(DANECTL_ID).tar.gz
3739
DANECTL_MANFILE=$(DANECTL_NAME).$(APP_MANSECT)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ SMIMEA records, and check that they are published in the DNS.
115115

116116
To install `danectl`:
117117

118-
tar xzf danectl-0.8.3.tar.gz
119-
cd danectl-0.8.3
118+
tar xzf danectl-0.8.4.tar.gz
119+
cd danectl-0.8.4
120120
make install
121121

122122
This will install:
@@ -172,6 +172,6 @@ For reloading affected services on key rollover, any system with
172172
URL: https://raf.org/danectl
173173
GIT: https://github.com/raforg/danectl
174174
GIT: https://codeberg.org/raforg/danectl
175-
Date: 20230419
175+
Date: 20230718
176176
Author: raf <raf@raf.org>
177177

danectl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
# You should have received a copy of the GNU General Public License
2020
# along with this program; if not, see <https://www.gnu.org/licenses/>.
2121
#
22-
# 20230419 raf <raf@raf.org>
22+
# 20230718 raf <raf@raf.org>
2323

2424
name=danectl
25-
version=0.8.3
26-
date=20230419
25+
version=0.8.4
26+
date=20230718
2727
author="raf <raf@raf.org>"
2828
url=https://raf.org/danectl
2929
git=https://github.com/raforg/danectl

danectl-nsupdate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use strict;
2424
# You should have received a copy of the GNU General Public License
2525
# along with this program; if not, see <https://www.gnu.org/licenses/>.
2626
#
27-
# 20230419 raf <raf@raf.org>
27+
# 20230718 raf <raf@raf.org>
2828

2929
# danectl-nsupdate - Adapt danectl DNS RR output for BIND9 nsupdate
3030
# usage: danectl rollover <cert-name> | danectl-nsupdate ttl | nsupdate

danectl-nsupdate.1.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# You should have received a copy of the GNU General Public License
1919
# along with this program; if not, see <https://www.gnu.org/licenses/>.
2020
#
21-
# 20230419 raf <raf@raf.org>
21+
# 20230718 raf <raf@raf.org>
2222

2323
=head1 NAME
2424

danectl-zonefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use strict;
2424
# You should have received a copy of the GNU General Public License
2525
# along with this program; if not, see <https://www.gnu.org/licenses/>.
2626
#
27-
# 20230419 raf <raf@raf.org>
27+
# 20230718 raf <raf@raf.org>
2828

2929
# danectl-zonefile - Adapt danectl DNS RR output to modify a BIND9 zonefile
3030
# usage: danectl rollover <cert-name> | danectl-zonectl <zonefile>

danectl-zonefile.1.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# You should have received a copy of the GNU General Public License
1919
# along with this program; if not, see <https://www.gnu.org/licenses/>.
2020
#
21-
# 20230419 raf <raf@raf.org>
21+
# 20230718 raf <raf@raf.org>
2222

2323
=head1 NAME
2424

runtests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# You should have received a copy of the GNU General Public License
2020
# along with this program; if not, see <https://www.gnu.org/licenses/>.
2121
#
22-
# 20230419 raf <raf@raf.org>
22+
# 20230718 raf <raf@raf.org>
2323

2424
status=0
2525

0 commit comments

Comments
 (0)