Skip to content

Commit f1c06b0

Browse files
fix: logged version
1 parent 32d4703 commit f1c06b0

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1+
## [1.0.1](https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.1) - 2021-03-04
2+
## Fixed
3+
- Logged application version
4+
5+
## Changed
6+
- Update users public key log message
7+
- Updated dependencies
8+
19
## [1.0.0](https://github.com/ReasonSoftware/ssh-manager/releases/tag/v1.0.0) - 2021-02-10
210
- First release

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/ReasonSoftware/ssh-manager
33
go 1.15
44

55
require (
6-
github.com/aws/aws-sdk-go v1.37.20
6+
github.com/aws/aws-sdk-go v1.37.24
77
github.com/pkg/errors v0.9.1
88
github.com/sirupsen/logrus v1.8.0
99
github.com/spf13/viper v1.7.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRF
2020
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
2121
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=
2222
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
23-
github.com/aws/aws-sdk-go v1.37.20 h1:CJCXpMYmBJrRH8YwoSE0oB9S3J5ax+62F14sYlDCztg=
24-
github.com/aws/aws-sdk-go v1.37.20/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
23+
github.com/aws/aws-sdk-go v1.37.24 h1:UmdPwGITvz//eFxNyuPlkq8KLlu4ZGvowsCQs+uFIp4=
24+
github.com/aws/aws-sdk-go v1.37.24/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
2525
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
2626
github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8=
2727
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
const (
1818
// Version of an application
19-
Version string = "2.0.0"
19+
Version string = "1.0.1"
2020
// AppDir contains an home dir for an application files
2121
AppDir string = "/var/lib/ssh-manager"
2222
// StateFile contains a filename of a state file

0 commit comments

Comments
 (0)