Skip to content

Commit 80a0982

Browse files
committed
0.7 (20211011)
1 parent 0335ae1 commit 80a0982

File tree

5 files changed

+38
-11
lines changed

5 files changed

+38
-11
lines changed

CHANGELOG

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

4+
0.7 (20211011)
5+
6+
- Replace original June 1991 GPLv2 with February 1999 (post-LGPLv2.1) GPLv2
7+
- Replace contributor covenant v2.0 with v2.1
8+
- adopt: Don't refuse existing cert created with --reuse-key (spotted by github/ran-deh)
9+
- new/dup: Handle incorrectly quoted domains (spotted by github/ran-deh)
10+
- Add support for overriding certbot command (spotted by github/ran-deh)
11+
- Smarter certbot plugin/command defaults
12+
- Detect incorrectly quoted certbot options
13+
- Replace "$@" with "$*" where it matters (for Ubuntu/NetBSD) (spotted by github/ran-deh)
14+
- Use /usr/xpg4/bin/sh if present (/bin/sh on Solaris11 is ksh93)
15+
- Remove non-standard 'local' keyword for variables in functions
16+
- make uninstall: Don't complain if files not installed
17+
- make install: Silence Solaris tweak and improve its error reporting
18+
- Rearrange copyright notice header
19+
- doc: Add "/etc/letsencrypt" to "replacing live with current" for clarity
20+
- doc: Replace "keypair" with "key" to avoid confusion with pairs of lineages
21+
- Minor documentation improvements
22+
- Remove superfluous echoes
23+
- Fix variable name clash
24+
- Support multiple base domains in a certificate lineage
25+
- smimea: Add a better check that the certificate can do S/MIME encryption
26+
- Add -1, --oneline option to output OPENPGPKEY/SMIMEA records on a single line
27+
- openpgpkey-check: Fix output (add terminating dot) when no key but record exists
28+
- Add command aliases: alias cb add tlsa del delete show
29+
- Add -s, --spaces option to include spaces in --oneline output
30+
431
0.6 (20210906)
532

633
- Make all reporting of extraneous records greppable zonefile comments
@@ -77,7 +104,7 @@ CHANGELOG
77104

78105
URL: https://raf.org/danectl
79106
GIT: https://github.com/raforg/danectl
80-
Date: 20210906
107+
Date: 20211011
81108
Author: raf <raf@raf.org>
82109

83110

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 20210906
25+
Date: 20211011
2626
Author: raf <raf@raf.org>
2727

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# along with this program; if not, see <https://www.gnu.org/licenses/>.
1919
#
2020

21-
# 20210906 raf <raf@raf.org>
21+
# 20211011 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.6
35-
DANECTL_DATE=20210906
34+
DANECTL_VERSION=0.7
35+
DANECTL_DATE=20211011
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.6.tar.gz
107-
cd danectl-0.6
106+
tar xzf danectl-0.7.tar.gz
107+
cd danectl-0.7
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: 20210906
140+
Date: 20211011
141141
Author: raf <raf@raf.org>
142142

danectl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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-
# 20210906 raf <raf@raf.org>
20+
# 20211011 raf <raf@raf.org>
2121

2222
name=danectl
23-
version=0.6
24-
date=20210906
23+
version=0.7
24+
date=20211011
2525
author="raf <raf@raf.org>"
2626
url=https://raf.org/danectl
2727
git=https://github.com/raforg/danectl

0 commit comments

Comments
 (0)