Skip to content

Commit a28b58a

Browse files
committed
0.8.1 (20230412)
1 parent a20e57e commit a28b58a

12 files changed

+24
-18
lines changed

Diff for: CHANGELOG

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
CHANGELOG
22
=========
33

4+
0.8.1 (20230412)
5+
6+
- README.md - Add danectl-zonefile and danectl-nsupdate to the list of things installed
7+
- Fix handling of domains with - (with github/thomas-mm)
8+
- Add support for Unicode domain names (IDNA2008/TR46)
9+
410
0.8 (20230313)
511

612
- Add references to the codeberg repository
@@ -143,7 +149,7 @@ CHANGELOG
143149
URL: https://raf.org/danectl
144150
GIT: https://github.com/raforg/danectl
145151
GIT: https://codeberg.org/raforg/danectl
146-
Date: 20230313
152+
Date: 20230412
147153
Author: raf <[email protected]>
148154

149155

Diff for: COPYING

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ Copyright (C) 2021-2023 raf <[email protected]>
2323
URL: http://raf.org/danectl
2424
GIT: https://github.com/raforg/danectl
2525
GIT: https://codeberg.org/raforg/danectl
26-
Date: 20230313
26+
Date: 20230412
2727
Author: raf <[email protected]>
2828

Diff for: Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1818
#
1919

20-
# 20230313 raf <[email protected]>
20+
# 20230412 raf <[email protected]>
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.8
34-
DANECTL_DATE=20230313
33+
DANECTL_VERSION=0.8.1
34+
DANECTL_DATE=20230412
3535
DANECTL_ID=$(DANECTL_NAME)-$(DANECTL_VERSION)
3636
DANECTL_DIST=$(DANECTL_ID).tar.gz
3737
DANECTL_MANFILE=$(DANECTL_NAME).$(APP_MANSECT)

Diff for: README.md

+3-3
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.8.tar.gz
107-
cd danectl-0.8
106+
tar xzf danectl-0.8.1.tar.gz
107+
cd danectl-0.8.1
108108
make install
109109

110110
This will install:
@@ -158,6 +158,6 @@ For reloading affected services on key rollover, any system with
158158
URL: https://raf.org/danectl
159159
GIT: https://github.com/raforg/danectl
160160
GIT: https://codeberg.org/raforg/danectl
161-
Date: 20230313
161+
Date: 20230412
162162
Author: raf <[email protected]>
163163

Diff for: danectl

+3-3
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-
# 20230313 raf <[email protected]>
22+
# 20230412 raf <[email protected]>
2323

2424
name=danectl
25-
version=0.8
26-
date=20230313
25+
version=0.8.1
26+
date=20230412
2727
author="raf <[email protected]>"
2828
url=https://raf.org/danectl
2929
git=https://github.com/raforg/danectl

Diff for: danectl-nsupdate

+1-1
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-
# 20230313 raf <[email protected]>
27+
# 20230412 raf <[email protected]>
2828

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

Diff for: danectl-nsupdate.1.pod

+1-1
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-
# 20230313 raf <[email protected]>
21+
# 20230412 raf <[email protected]>
2222

2323
=head1 NAME
2424

Diff for: danectl-zonefile

+1-1
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-
# 20230313 raf <[email protected]>
27+
# 20230412 raf <[email protected]>
2828

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

Diff for: danectl-zonefile.1.pod

+1-1
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-
# 20230313 raf <[email protected]>
21+
# 20230412 raf <[email protected]>
2222

2323
=head1 NAME
2424

Diff for: runtests

+1-1
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-
# 20230313 raf <[email protected]>
22+
# 20230412 raf <[email protected]>
2323

2424
status=0
2525

Diff for: tests/nsupdate

+1-1
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-
# 20230313 raf <[email protected]>
22+
# 20230412 raf <[email protected]>
2323

2424
./danectl-nsupdate 300 < tests/nsupdate.in | diff -u tests/nsupdate.out -
2525
rc=$?

Diff for: tests/zonefile

+1-1
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-
# 20230313 raf <[email protected]>
22+
# 20230412 raf <[email protected]>
2323

2424
# Test 1 replaces old "manual" records with new ones
2525
# Test 2 appends new records only (no old records)

0 commit comments

Comments
 (0)