2 Commits
0.14 ... v0.15

Author SHA1 Message Date
David Blacka
9004a33d51 Exit with non-zero with exception. Fix dnsjava lib.
It is unclear how we got the version of dnsjava that was checked in.
The same version build from the jdnssec-dnsjava repo was different.
This fixes the "missing CAA" support issue.
2019-02-26 14:26:18 +00:00
David Blacka
0aca329f85 Remove verisignlabs.com website for now
The verisignlabs.com website is non-functional.  Everything is actually here on github.com, though.
2019-01-30 11:37:34 -05:00
6 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,11 @@
2019-02-26 David Blacka <davidb@verisign.com>
* Released version 0.15
* Ensure when a command line tool throws an exception it exits
with a non-zero exit code.
* Update local dnsjava jar to match actual build for
jdnssec-dnsjava.
2018-11-16 David Blacka <davidb@verisign.com> 2018-11-16 David Blacka <davidb@verisign.com>
* Released version 0.14 * Released version 0.14

View File

@@ -1,6 +1,5 @@
# jdnssec-tools # jdnssec-tools
* http://www.verisignlabs.com/jdnssec-tools/
* https://github.com/dblacka/jdnssec-tools/wiki * https://github.com/dblacka/jdnssec-tools/wiki
Author: David Blacka (davidb@verisign.com) Author: David Blacka (davidb@verisign.com)

View File

@@ -1 +1 @@
version=0.14 version=0.15

View File

@@ -10,7 +10,7 @@ apply plugin: 'idea'
jar { jar {
baseName = 'jdnssec-tools' baseName = 'jdnssec-tools'
version = '0.14' version = '0.15'
} }
repositories { repositories {

Binary file not shown.

View File

@@ -338,6 +338,7 @@ public abstract class CLBase
catch (Exception e) catch (Exception e)
{ {
e.printStackTrace(); e.printStackTrace();
System.exit(1);
} }
} }
} }