Browse Source

3.90

refactor-volume-write 3.90
chrislu 1 day ago
parent
commit
81aeec74a4
  1. 4
      k8s/charts/seaweedfs/Chart.yaml
  2. 3
      weed/util/version/constants.go

4
k8s/charts/seaweedfs/Chart.yaml

@ -1,6 +1,6 @@
apiVersion: v1
description: SeaweedFS
name: seaweedfs
appVersion: "3.89"
appVersion: "3.90"
# Dev note: Trigger a helm chart release by `git tag -a helm-<version>`
version: 4.0.389
version: 4.0.390

3
weed/util/version/constants.go

@ -2,6 +2,7 @@ package version
import (
"fmt"
"github.com/seaweedfs/seaweedfs/weed/util"
)
@ -9,7 +10,7 @@ const HttpStatusCancelled = 499
var (
MAJOR_VERSION = int32(3)
MINOR_VERSION = int32(89)
MINOR_VERSION = int32(90)
VERSION_NUMBER = fmt.Sprintf("%d.%02d", MAJOR_VERSION, MINOR_VERSION)
VERSION = util.SizeLimit + " " + VERSION_NUMBER
COMMIT = ""

Loading…
Cancel
Save