Skip to content

Commit

Permalink
released version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maticmeznar committed Nov 19, 2017
1 parent 0e6f4af commit c8daf22
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"
version = "0.2"
)

// ListItem is a struct with list details
Expand All @@ -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()
Expand Down

0 comments on commit c8daf22

Please sign in to comment.