From c8daf22cda1285f8d320d60d1afd324548c62540 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matic=20Me=C5=BEnar?= Date: Sun, 19 Nov 2017 13:09:20 +0100 Subject: [PATCH] released version 0.2 --- CHANGELOG.md | 9 +++++++-- main.go | 4 +--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 422eeca..3dae474 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] -### Changed -- Renamed 'ip4' command to 'ip' + +## [0.2] - 2017-11-19 +### Added - Rate of checks per second can now be set with `--speed` flag. - More verbose output can now be enabled with `--verbose` flag. +### Changed +- Command 'ip4' was renamed to 'ip'. +- Some DNSBL lists were disabled because they weren't working. + ## [0.1] - 2017-11-17 ### Added - DNSBL IPv4 queries diff --git a/main.go b/main.go index 6823884..b4f82b3 100644 --- a/main.go +++ b/main.go @@ -25,8 +25,7 @@ var ( // cfgIP6 = ip6Cmd.Arg("ip", "IP address to check").Required().String() domainCmd = app.Command("domain", "checks a domain against DNSBLs") cfgDomain = domainCmd.Arg("domain", "domain name to check").Required().String() - version = "0.1" - author = "Matic Mežnar " + version = "0.2" ) // ListItem is a struct with list details @@ -49,7 +48,6 @@ type ListItem struct { func main() { app.Version(version) - app.Author(author) ks := kingpin.MustParse(app.Parse(os.Args[1:])) allLists := parseCVS()