Skip to content

Commit 3cfb5e8

Browse files
committed
0.7.4 (20220725)
1 parent a8c3a8b commit 3cfb5e8

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

CHANGELOG

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

4+
0.7.4 (20220725)
5+
6+
- Add support for non-rsa keys (e.g., ecdsa) (github/csarn Christoph Sarnowski)
7+
- Fix tabs in TLSA record output on some systems (with github/csarn Christoph Sarnowski)
8+
49
0.7.3 (20211221)
510

611
- tlsa-check: Fixed output of new reuse_key check to match greppability convention
@@ -125,7 +130,7 @@ CHANGELOG
125130

126131
URL: https://raf.org/danectl
127132
GIT: https://github.com/raforg/danectl
128-
Date: 20211221
133+
Date: 20220725
129134
Author: raf <raf@raf.org>
130135

131136

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 raf <raf@raf.org>
6+
Copyright (C) 2021-2022 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
@@ -22,6 +22,6 @@ Copyright (C) 2021 raf <raf@raf.org>
2222

2323
URL: http://raf.org/danectl
2424
GIT: https://github.com/raforg/danectl
25-
Date: 20211221
25+
Date: 20220725
2626
Author: raf <raf@raf.org>
2727

Makefile

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

21-
# 20211221 raf <raf@raf.org>
21+
# 20220725 raf <raf@raf.org>
2222

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

3333
DANECTL_NAME=danectl
34-
DANECTL_VERSION=0.7.3
35-
DANECTL_DATE=20211221
34+
DANECTL_VERSION=0.7.4
35+
DANECTL_DATE=20220725
3636
DANECTL_ID=$(DANECTL_NAME)-$(DANECTL_VERSION)
3737
DANECTL_DIST=$(DANECTL_ID).tar.gz
3838
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.3.tar.gz
107-
cd danectl-0.7.3
106+
tar xzf danectl-0.7.4.tar.gz
107+
cd danectl-0.7.4
108108
make install
109109

110110
This will install:
@@ -137,6 +137,6 @@ On systems like Solaris, /usr/xpg4/bin/sh is used instead of /bin/sh.
137137

138138
URL: https://raf.org/danectl
139139
GIT: https://github.com/raforg/danectl
140-
Date: 20211221
140+
Date: 20220725
141141
Author: raf <raf@raf.org>
142142

danectl

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

2222
name=danectl
23-
version=0.7.3
24-
date=20211221
23+
version=0.7.4
24+
date=20220725
2525
author="raf <raf@raf.org>"
2626
url=https://raf.org/danectl
2727
git=https://github.com/raforg/danectl
@@ -101,7 +101,7 @@ Author: $author
101101
URL: $url
102102
URL: $git
103103
104-
Copyright (C) 2021 $author
104+
Copyright (C) 2021-2022 $author
105105
106106
This is free software released under the terms of the GPLv2+:
107107

0 commit comments

Comments
 (0)