Skip to content

Commit 24b9921

Browse files
1.0.3
1 parent ef3eb71 commit 24b9921

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.3](https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.3) - 2021-05-01
2+
## Changed
3+
- Updated dependencies
4+
15
## [1.0.2](https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.2) - 2021-04-26
26
## Changed
37
- Updated dependencies

internal/app/version.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package app
2+
3+
// Version contains current application version
4+
const Version string = "1.0.3"

main.go

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ import (
1515
)
1616

1717
const (
18-
// Version of an application
19-
Version string = "1.0.2"
2018
// AppDir contains an home dir for an application files
2119
AppDir string = "/var/lib/ssh-manager"
2220
// StateFile contains a filename of a state file
@@ -73,7 +71,7 @@ func init() {
7371
}
7472

7573
func main() {
76-
log.Infof("ssh-manager v%v started", Version)
74+
log.Infof("ssh-manager v%v started", app.Version)
7775

7876
// validate groups
7977
log.Info("validating users group")

0 commit comments

Comments
 (0)