Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Jun 21, 2024
1 parent a09c669 commit 33cd3ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (s *Server) Start(ctx context.Context) error {
}
}()
go func() {
httpListener := muxServer.Match(cmux.HTTP1Fast())
httpListener := muxServer.Match(cmux.HTTP1Fast(http.MethodPatch))
s.echoServer.Listener = httpListener
if err := s.echoServer.Start(address); err != nil {
slog.Error("failed to start echo server", err)
Expand Down
4 changes: 2 additions & 2 deletions server/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (

// Version is the service current released version.
// Semantic versioning: https://semver.org/
var Version = "0.22.2"
var Version = "0.22.3"

// DevVersion is the service current development version.
var DevVersion = "0.22.2"
var DevVersion = "0.22.3"

func GetCurrentVersion(mode string) string {
if mode == "dev" || mode == "demo" {
Expand Down

0 comments on commit 33cd3ed

Please sign in to comment.