Skip to content

Commit

Permalink
fixes and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
netevert committed Nov 24, 2019
1 parent fe4b0a8 commit 8fe0b0c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ builds:
- binary: dnsmorph
goos:
- windows
- darwin
- linux
goarch:
- amd64
Expand All @@ -18,7 +17,6 @@ archive:
replacements:
amd64: 64-bit
386: 32-bit
darwin: macOS
format_overrides:
- goos: windows
format: zip
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
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).

## [1.2.7] - 2019-11-24

### Changed

- Updated GeoLite database
- Removed Mac version

### Fixed

- Minor fixes to bugs introduced by dependency package code changes

## [1.2.6] - 2019-06-27

### Added
Expand Down
Binary file modified data/GeoLite2-City.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions dnsmorph.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
)

// program version
const version = "1.2.6"
const version = "1.2.7"

var (
githubTag = &latest.GithubTag{
Expand Down Expand Up @@ -375,10 +375,10 @@ func whoisLookup(inputDomain string) []string {
if err == nil {

// Add the domain created date
data = append(data, result.Registrar.CreatedDate)
data = append(data, result.Domain.CreatedDate)

// Print the domain modification date
data = append(data, result.Registrar.UpdatedDate)
data = append(data, result.Domain.UpdatedDate)
}
}
return data
Expand Down

0 comments on commit 8fe0b0c

Please sign in to comment.