File tree 9 files changed +15
-6
lines changed
9 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 1.12.1] 2020-03-21
6
+
7
+ * add kill_delay [ #49 ] ( https://github.com/cosmtrek/air/issues/29 ) , credited to [ wsnotify] ( https://github.com/wsnotify )
8
+ * build on Go1.14
9
+
5
10
## [ 1.12.0] 2020-01-01
6
11
7
12
* add stop_on_error [ #38 ] ( https://github.com/cosmtrek/air/issues/38 )
Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/creack/pty v1.1.9
7
7
github.com/fatih/color v1.7.0
8
- github.com/fsnotify/fsnotify v1.4.7
8
+ github.com/fsnotify/fsnotify v1.4.9
9
9
github.com/imdario/mergo v0.3.8
10
10
github.com/mattn/go-colorable v0.1.4 // indirect
11
11
github.com/mattn/go-isatty v0.0.10 // indirect
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
7
7
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
8
8
github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys =
9
9
github.com/fatih/color v1.7.0 /go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4 =
10
- github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I =
11
- github.com/fsnotify/fsnotify v1.4.7 /go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo =
10
+ github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4 =
11
+ github.com/fsnotify/fsnotify v1.4.9 /go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ =
12
12
github.com/imdario/mergo v0.3.8 h1:CGgOkSJeqMRmt0D9XLWExdT4m4F1vd3FV3VPt+0VxkQ =
13
13
github.com/imdario/mergo v0.3.8 /go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA =
14
14
github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA =
@@ -24,6 +24,7 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
24
24
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk =
25
25
github.com/stretchr/testify v1.4.0 /go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4 =
26
26
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 /go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY =
27
+ golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
27
28
golang.org/x/sys v0.0.0-20191008105621-543471e840be /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
28
29
golang.org/x/sys v0.0.0-20191110163157-d32e6e3b99c4 h1:Hynbrlo6LbYI3H1IqXpkVDOcX/3HiPdhVEuyj5a59RM =
29
30
golang.org/x/sys v0.0.0-20191110163157-d32e6e3b99c4 /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ func main() {
28
28
fmt .Printf (`
29
29
__ _ ___
30
30
/ /\ | | | |_)
31
- /_/--\ |_| |_| \_ // live reload for Go apps [v%s]
31
+ /_/--\ |_| |_| \_ v%s // live reload for Go apps, with Go%s
32
32
33
- ` , version )
33
+ ` , airVersion , goVersion )
34
34
35
35
if showVersion {
36
36
return
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
- const version = "1.12.0"
3
+ const (
4
+ airVersion = "1.12.1"
5
+ goVersion = "1.14.0"
6
+ )
You can’t perform that action at this time.
0 commit comments