Skip to content

Commit

Permalink
fixed issue #44
Browse files Browse the repository at this point in the history
  • Loading branch information
netevert committed Apr 2, 2018
1 parent 44dd14f commit b146f4b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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.1.3] - 2018-04-02
### Fixed
- Versioning
- Minor fixes to output coloring

## [1.1.2] - 2018-03-31
### Fixed
- Bug introduced in v.1.1 that made tld's disappear in terminal output
Expand Down
10 changes: 5 additions & 5 deletions dnsmorph.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ import (
)

// program version
const version = "1.1.1"
const version = "1.1.3"

var (
g = color.New(color.FgHiGreen)
y = color.New(color.FgYellow)
y = color.New(color.FgHiYellow)
r = color.New(color.FgHiRed)
blue = color.New(color.FgBlue).SprintFunc()
yellow = color.New(color.FgYellow).SprintFunc()
blue = color.New(color.FgHiBlue).SprintFunc()
yellow = color.New(color.FgHiYellow).SprintFunc()
white = color.New(color.FgWhite).SprintFunc()
red = color.New(color.FgRed).SprintFunc()
red = color.New(color.FgHiRed).SprintFunc()
w = new(tabwriter.Writer)
wg = &sync.WaitGroup{}
domain = flag.String("d", "", "target domain")
Expand Down

0 comments on commit b146f4b

Please sign in to comment.