File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 1.0.3] ( https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.3 ) - 2021-05-01
2
+ ## Changed
3
+ - Updated dependencies
4
+
1
5
## [ 1.0.2] ( https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.2 ) - 2021-04-26
2
6
## Changed
3
7
- Updated dependencies
Original file line number Diff line number Diff line change
1
+ package app
2
+
3
+ // Version contains current application version
4
+ const Version string = "1.0.3"
Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ import (
15
15
)
16
16
17
17
const (
18
- // Version of an application
19
- Version string = "1.0.2"
20
18
// AppDir contains an home dir for an application files
21
19
AppDir string = "/var/lib/ssh-manager"
22
20
// StateFile contains a filename of a state file
@@ -73,7 +71,7 @@ func init() {
73
71
}
74
72
75
73
func main () {
76
- log .Infof ("ssh-manager v%v started" , Version )
74
+ log .Infof ("ssh-manager v%v started" , app . Version )
77
75
78
76
// validate groups
79
77
log .Info ("validating users group" )
You can’t perform that action at this time.
0 commit comments