Skip to content

Commit

Permalink
chore: update version to 0.8.2 (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack authored Dec 10, 2022
1 parent 66418d4 commit dd6e233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions server/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ func (s *Server) registerSystemRoutes(g *echo.Group) {
}

userID, ok := c.Get(getUserIDContextKey()).(int)
// Get database size for host user.
if ok {
user, err := s.Store.FindUser(ctx, &api.UserFind{
ID: &userID,
Expand Down
4 changes: 2 additions & 2 deletions server/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (

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

// DevVersion is the service current development version.
var DevVersion = "0.8.1"
var DevVersion = "0.8.2"

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

0 comments on commit dd6e233

Please sign in to comment.