Skip to content

Commit 7a66ee8

Browse files
committed
Bumped v0.4.2
Signed-off-by: Vishal Rana <vr@labstack.com>
1 parent d0dfdb9 commit 7a66ee8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
IMAGE = labstack/tunnel
2-
VERSION = 0.4.1
2+
VERSION = 0.4.2
33

44
publish:
55
git tag v$(VERSION)

cmd/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
)
88

99
const (
10-
version = "v0.4.1"
10+
version = "v0.4.2"
1111
)
1212

1313
var versionCmd = &cobra.Command{

daemon/connection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func (s *Server) newConnection(req *ConnectRequest) (c *Connection, err error) {
9191
} else if res.IsError() {
9292
return nil, fmt.Errorf("failed to the find the configuration: %s", e.Message)
9393
}
94-
c.User = fmt.Sprintf("key=%s,name=%s", key, req.Configuration)
94+
c.User = fmt.Sprintf("key=%s,config=%s", key, req.Configuration)
9595
c.Host = net.JoinHostPort(c.Configuration.Hostname, "22")
9696
} else {
9797
if req.Protocol == ProtocolTLS {

0 commit comments

Comments
 (0)