From: Michael Orlitzky Date: Mon, 19 Aug 2013 22:11:38 +0000 (-0400) Subject: Add an upper bound on the base version. X-Git-Tag: 0.0.4~2 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=hath.git;a=commitdiff_plain;h=72c3be416fee2fc84eb41931f3759787f62293a1 Add an upper bound on the base version. Small addition to the man page. --- diff --git a/doc/man1/hath.1 b/doc/man1/hath.1 index 3050385..6bb5ae4 100644 --- a/doc/man1/hath.1 +++ b/doc/man1/hath.1 @@ -23,6 +23,10 @@ Combine small blocks into larger ones. For example, if you have two consecutive /24s, they might combine into a larger /23. .IP \(bu View the result of block combination in a useful way. +.IP \(bu +List them. +.IP \(bu +Find their associated PTR records. .P Hath does just that. It takes as its input (via stdin, or a file with the -i parameter) a list of CIDR blocks. diff --git a/hath.cabal b/hath.cabal index 48db071..eed089d 100644 --- a/hath.cabal +++ b/hath.cabal @@ -92,7 +92,7 @@ description: executable hath build-depends: - base >= 4.6.0, + base >= 4.6 && < 4.7, bytestring == 0.10.*, dns == 0.3.*, HUnit == 1.2.*, @@ -149,7 +149,7 @@ test-suite testsuite hs-source-dirs: src test main-is: TestSuite.hs build-depends: - base >= 4.6.0, + base >= 4.6 && < 4.7, bytestring == 0.10.*, dns == 0.3.*, HUnit == 1.2.*,