We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6223b42 commit c318a99Copy full SHA for c318a99
Makefile
@@ -11,7 +11,7 @@ BINDATA := $(shell find conf | sed 's/ /\\ /g')
11
STYLESHEETS := $(wildcard public/less/index.less public/less/_*.less)
12
JAVASCRIPTS :=
13
14
-VERSION = $(shell git describe --tags --always | sed 's/-/+/')
+VERSION = $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
15
16
LDFLAGS += -X "main.Version=$(VERSION)"
17
main.go
@@ -16,7 +16,7 @@ import (
)
18
// Version holds the current Gitea version
19
-var Version = "v0.9.0+dev"
+var Version = "1.0.0+dev"
20
21
func init() {
22
runtime.GOMAXPROCS(runtime.NumCPU())
templates/.VERSION
@@ -1 +1 @@
1
-v0.9.0+dev
+1.0.0+dev
0 commit comments