Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-yurchenko committed May 1, 2021
1 parent ef3eb71 commit 24b9921
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.3](https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.3) - 2021-05-01
## Changed
- Updated dependencies

## [1.0.2](https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.2) - 2021-04-26
## Changed
- Updated dependencies
Expand Down
4 changes: 4 additions & 0 deletions internal/app/version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package app

// Version contains current application version
const Version string = "1.0.3"
4 changes: 1 addition & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ import (
)

const (
// Version of an application
Version string = "1.0.2"
// AppDir contains an home dir for an application files
AppDir string = "/var/lib/ssh-manager"
// StateFile contains a filename of a state file
Expand Down Expand Up @@ -73,7 +71,7 @@ func init() {
}

func main() {
log.Infof("ssh-manager v%v started", Version)
log.Infof("ssh-manager v%v started", app.Version)

// validate groups
log.Info("validating users group")
Expand Down

0 comments on commit 24b9921

Please sign in to comment.