Skip to content

Commit

Permalink
Exit with non-zero with exception. Fix dnsjava lib.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dblacka committed Feb 26, 2019
1 parent 0aca329 commit 9004a33
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2019-02-26 David Blacka <[email protected]>

* 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 <[email protected]>

* Released version 0.14
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.14
version=0.15
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apply plugin: 'idea'

jar {
baseName = 'jdnssec-tools'
version = '0.14'
version = '0.15'
}

repositories {
Expand Down
Binary file modified lib/dnsjava-2.1.7-vrsn-1.jar
Binary file not shown.
1 change: 1 addition & 0 deletions src/main/java/com/verisignlabs/dnssec/cl/CLBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ public void run(CLIStateBase state, String[] args)
catch (Exception e)
{
e.printStackTrace();
System.exit(1);
}
}
}

0 comments on commit 9004a33

Please sign in to comment.