Skip to content

Commit 2c62160

Browse files
committed
0.8 (20230313)
1 parent bc7218d commit 2c62160

File tree

13 files changed

+43
-30
lines changed

13 files changed

+43
-30
lines changed

.reuse/dep5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ Upstream-Contact: raf <raf@raf.org>
44
Source: https://raf.org/danectl
55

66
Files: *
7-
Copyright: 2021-2022 raf <raf@raf.org>
7+
Copyright: 2021-2023 raf <raf@raf.org>
88
License: GPL-2.0-or-later
99

CHANGELOG

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

4+
0.8 (20230313)
5+
6+
- Add references to the codeberg repository
7+
- Add LICENSES/* and .reuse/dep5 (REUSE 3.0 compliant)
8+
- Add danectl-nsupdate (output adapter for BIND9 dynamic DNS updates)
9+
- Add support for drill on systems like Arch that prefer it to host (for Gaspard d'Hautefeuille)
10+
- Fix openpgpkey-check superfluous record detection: localpart was hard-coded for testing
11+
- Add danectl-zonefile (output adapter for modifying BIND9 zonefiles)
12+
- Add --group option for different certbot configurations for different domains (for github/hunter-nl)
13+
- Add support for reload to use an explicit path to an executable file (for github/hunter-nl)
14+
- Add exporting $CERTNAME environment variable when reloading services (for github/hunter-nl)
15+
416
0.7.4 (20220725)
517

618
- Add support for non-rsa keys (e.g., ecdsa) (github/csarn Christoph Sarnowski)
@@ -130,7 +142,8 @@ CHANGELOG
130142

131143
URL: https://raf.org/danectl
132144
GIT: https://github.com/raforg/danectl
133-
Date: 20220725
145+
GIT: https://codeberg.org/raforg/danectl
146+
Date: 20230313
134147
Author: raf <raf@raf.org>
135148

136149

COPYING

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ COPYING
33
danectl - DNSSEC DANE implementation manager
44
https://raf.org/danectl
55

6-
Copyright (C) 2021-2022 raf <raf@raf.org>
6+
Copyright (C) 2021-2023 raf <raf@raf.org>
77

88
This program is free software; you can redistribute it and/or modify
99
it under the terms of the GNU General Public License as published by
@@ -23,6 +23,6 @@ Copyright (C) 2021-2022 raf <raf@raf.org>
2323
URL: http://raf.org/danectl
2424
GIT: https://github.com/raforg/danectl
2525
GIT: https://codeberg.org/raforg/danectl
26-
Date: 20220725
26+
Date: 20230313
2727
Author: raf <raf@raf.org>
2828

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# danectl - DNSSEC DANE implementation manager
22
# https://raf.org/danectl
33
#
4-
# Copyright (C) 2021-2022 raf <raf@raf.org>
4+
# Copyright (C) 2021-2023 raf <raf@raf.org>
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -17,7 +17,7 @@
1717
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1818
#
1919

20-
# 20220725 raf <raf@raf.org>
20+
# 20230313 raf <raf@raf.org>
2121

2222
DESTDIR :=
2323
PREFIX := $(DESTDIR)/usr/local
@@ -30,8 +30,8 @@ APP_MANDIR := $(MAN_INSDIR)/man$(APP_MANSECT)
3030
APP_MANSECTNAME := User Commands
3131

3232
DANECTL_NAME=danectl
33-
DANECTL_VERSION=0.7.4
34-
DANECTL_DATE=20220725
33+
DANECTL_VERSION=0.8
34+
DANECTL_DATE=20230313
3535
DANECTL_ID=$(DANECTL_NAME)-$(DANECTL_VERSION)
3636
DANECTL_DIST=$(DANECTL_ID).tar.gz
3737
DANECTL_MANFILE=$(DANECTL_NAME).$(APP_MANSECT)

README.md

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

104104
To install `danectl`:
105105

106-
tar xzf danectl-0.7.4.tar.gz
107-
cd danectl-0.7.4
106+
tar xzf danectl-0.8.tar.gz
107+
cd danectl-0.8
108108
make install
109109

110110
This will install:
@@ -152,6 +152,6 @@ For reloading affected services on key rollover, any system with
152152
URL: https://raf.org/danectl
153153
GIT: https://github.com/raforg/danectl
154154
GIT: https://codeberg.org/raforg/danectl
155-
Date: 20220725
155+
Date: 20230313
156156
Author: raf <raf@raf.org>
157157

danectl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# https://github.com/raforg/danectl
55
# https://codeberg.org/raforg/danectl
66
#
7-
# Copyright (C) 2021-2022 raf <raf@raf.org>
7+
# Copyright (C) 2021-2023 raf <raf@raf.org>
88
#
99
# This program is free software; you can redistribute it and/or modify
1010
# it under the terms of the GNU General Public License as published by
@@ -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-
# 20220725 raf <raf@raf.org>
22+
# 20230313 raf <raf@raf.org>
2323

2424
name=danectl
25-
version=0.7.4
26-
date=20220725
25+
version=0.8
26+
date=20230313
2727
author="raf <raf@raf.org>"
2828
url=https://raf.org/danectl
2929
git=https://github.com/raforg/danectl
@@ -107,7 +107,7 @@ URL: $url
107107
GIT: $git
108108
GIT: $git2
109109
110-
Copyright (C) 2021-2022 $author
110+
Copyright (C) 2021-2023 $author
111111
112112
This is free software released under the terms of the GPLv2+:
113113

danectl-nsupdate

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use strict;
99
# https://github.com/raforg/danectl
1010
# https://codeberg.org/raforg/danectl
1111
#
12-
# Copyright (C) 2021-2022 raf <raf@raf.org>
12+
# Copyright (C) 2021-2023 raf <raf@raf.org>
1313
#
1414
# This program is free software; you can redistribute it and/or modify
1515
# it under the terms of the GNU General Public License as published by
@@ -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-
# 20220725 raf <raf@raf.org>
27+
# 20230313 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://github.com/raforg/danectl
44
# https://codeberg.org/raforg/danectl
55
#
6-
# Copyright (C) 2021-2022 raf <raf@raf.org>
6+
# Copyright (C) 2021-2023 raf <raf@raf.org>
77
#
88
# This program is free software; you can redistribute it and/or modify
99
# it under the terms of the GNU General Public License as published by
@@ -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-
# 20220725 raf <raf@raf.org>
21+
# 20230313 raf <raf@raf.org>
2222

2323
=head1 NAME
2424

danectl-zonefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use strict;
99
# https://github.com/raforg/danectl
1010
# https://codeberg.org/raforg/danectl
1111
#
12-
# Copyright (C) 2021-2022 raf <raf@raf.org>
12+
# Copyright (C) 2021-2023 raf <raf@raf.org>
1313
#
1414
# This program is free software; you can redistribute it and/or modify
1515
# it under the terms of the GNU General Public License as published by
@@ -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-
# 20220725 raf <raf@raf.org>
27+
# 20230313 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://github.com/raforg/danectl
44
# https://codeberg.org/raforg/danectl
55
#
6-
# Copyright (C) 2021-2022 raf <raf@raf.org>
6+
# Copyright (C) 2021-2023 raf <raf@raf.org>
77
#
88
# This program is free software; you can redistribute it and/or modify
99
# it under the terms of the GNU General Public License as published by
@@ -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-
# 20220725 raf <raf@raf.org>
21+
# 20230313 raf <raf@raf.org>
2222

2323
=head1 NAME
2424

0 commit comments

Comments
 (0)