Skip to content

Commit 6babe4a

Browse files
committed
chore(*): bump version to v1.12.1
1 parent ff8c2ed commit 6babe4a

File tree

9 files changed

+15
-6
lines changed

9 files changed

+15
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

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+
510
## [1.12.0] 2020-01-01
611

712
* add stop_on_error [#38](https://github.com/cosmtrek/air/issues/38)

bin/darwin/air

84.8 KB
Binary file not shown.

bin/linux/air

88.6 KB
Binary file not shown.

bin/windows/air.exe

67 KB
Binary file not shown.

docs/air.png

-56.2 KB
Loading

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.13
55
require (
66
github.com/creack/pty v1.1.9
77
github.com/fatih/color v1.7.0
8-
github.com/fsnotify/fsnotify v1.4.7
8+
github.com/fsnotify/fsnotify v1.4.9
99
github.com/imdario/mergo v0.3.8
1010
github.com/mattn/go-colorable v0.1.4 // indirect
1111
github.com/mattn/go-isatty v0.0.10 // indirect

go.sum

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
77
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
88
github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
99
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=
1212
github.com/imdario/mergo v0.3.8 h1:CGgOkSJeqMRmt0D9XLWExdT4m4F1vd3FV3VPt+0VxkQ=
1313
github.com/imdario/mergo v0.3.8/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA=
1414
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+
2424
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
2525
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
2626
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=
2728
golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
2829
golang.org/x/sys v0.0.0-20191110163157-d32e6e3b99c4 h1:Hynbrlo6LbYI3H1IqXpkVDOcX/3HiPdhVEuyj5a59RM=
2930
golang.org/x/sys v0.0.0-20191110163157-d32e6e3b99c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ func main() {
2828
fmt.Printf(`
2929
__ _ ___
3030
/ /\ | | | |_)
31-
/_/--\ |_| |_| \_ // live reload for Go apps [v%s]
31+
/_/--\ |_| |_| \_ v%s // live reload for Go apps, with Go%s
3232
33-
`, version)
33+
`, airVersion, goVersion)
3434

3535
if showVersion {
3636
return

version.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
package main
22

3-
const version = "1.12.0"
3+
const (
4+
airVersion = "1.12.1"
5+
goVersion = "1.14.0"
6+
)

0 commit comments

Comments
 (0)