File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.1.3] - 2018-04-02
8
+ ### Fixed
9
+ - Versioning
10
+ - Minor fixes to output coloring
11
+
7
12
## [ 1.1.2] - 2018-03-31
8
13
### Fixed
9
14
- Bug introduced in v.1.1 that made tld's disappear in terminal output
Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ import (
16
16
)
17
17
18
18
// program version
19
- const version = "1.1.1 "
19
+ const version = "1.1.3 "
20
20
21
21
var (
22
22
g = color .New (color .FgHiGreen )
23
- y = color .New (color .FgYellow )
23
+ y = color .New (color .FgHiYellow )
24
24
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 ()
27
27
white = color .New (color .FgWhite ).SprintFunc ()
28
- red = color .New (color .FgRed ).SprintFunc ()
28
+ red = color .New (color .FgHiRed ).SprintFunc ()
29
29
w = new (tabwriter.Writer )
30
30
wg = & sync.WaitGroup {}
31
31
domain = flag .String ("d" , "" , "target domain" )
You can’t perform that action at this time.
0 commit comments