Skip to content

Commit

Permalink
chore: update version 0.7.2 (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack authored Nov 12, 2022
1 parent d1aa6aa commit fe05e6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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.7.1"
var Version = "0.7.2"

// DevVersion is the service current development version.
var DevVersion = "0.7.1"
var DevVersion = "0.7.2"

func GetCurrentVersion(mode string) string {
if mode == "dev" {
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/UpdateVersionBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const UpdateVersionBanner: React.FC = () => {
const skipped = skippedVersion ? skippedVersion === latestVersion : false;
setState({
latestVersion,
show: !skipped && currentVersion !== latestVersion,
show: !skipped && currentVersion < latestVersion,
});
}
)
Expand Down

0 comments on commit fe05e6a

Please sign in to comment.