Skip to content

Commit b146f4b

Browse files
author
netevert
committed
fixed issue #44
1 parent 44dd14f commit b146f4b

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [1.1.3] - 2018-04-02
8+
### Fixed
9+
- Versioning
10+
- Minor fixes to output coloring
11+
712
## [1.1.2] - 2018-03-31
813
### Fixed
914
- Bug introduced in v.1.1 that made tld's disappear in terminal output

dnsmorph.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ import (
1616
)
1717

1818
// program version
19-
const version = "1.1.1"
19+
const version = "1.1.3"
2020

2121
var (
2222
g = color.New(color.FgHiGreen)
23-
y = color.New(color.FgYellow)
23+
y = color.New(color.FgHiYellow)
2424
r = color.New(color.FgHiRed)
25-
blue = color.New(color.FgBlue).SprintFunc()
26-
yellow = color.New(color.FgYellow).SprintFunc()
25+
blue = color.New(color.FgHiBlue).SprintFunc()
26+
yellow = color.New(color.FgHiYellow).SprintFunc()
2727
white = color.New(color.FgWhite).SprintFunc()
28-
red = color.New(color.FgRed).SprintFunc()
28+
red = color.New(color.FgHiRed).SprintFunc()
2929
w = new(tabwriter.Writer)
3030
wg = &sync.WaitGroup{}
3131
domain = flag.String("d", "", "target domain")

0 commit comments

Comments
 (0)