Skip to content

Commit cf201d2

Browse files
committed
release v1.0.49
1 parent 37977b0 commit cf201d2

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

cmd/xgo/runtime_gen/core/version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"os"
77
)
88

9-
const VERSION = "1.0.48"
10-
const REVISION = "ee7e3078596587e9734a1e6f208d258b8c6fa090+1"
11-
const NUMBER = 305
9+
const VERSION = "1.0.49"
10+
const REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
11+
const NUMBER = 308
1212

1313
// these fields will be filled by compiler, see CORE_VERSION in cmd/xgo/version.go
1414
const XGO_VERSION = ""

cmd/xgo/version.go

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@ package main
22

33
import "fmt"
44

5-
// auto updated
6-
const VERSION = "1.0.48"
7-
const REVISION = "40aa40fc76231d2c9ee681be5456b26d4255f123+1"
8-
const NUMBER = 307
5+
// REVISION and NUMBER are auto updated when run 'git commit'
6+
// VERSION is manully updated when needed a new tag
7+
// see also runtime/core/version.go
8+
const VERSION = "1.0.49"
9+
const REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
10+
const NUMBER = 308
911

12+
// the matching runtime/core's version
1013
// manually updated
11-
const CORE_VERSION = "1.0.48"
12-
const CORE_REVISION = "ee7e3078596587e9734a1e6f208d258b8c6fa090+1"
13-
const CORE_NUMBER = 305
14+
const CORE_VERSION = "1.0.49"
15+
const CORE_REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
16+
const CORE_NUMBER = 308
1417

1518
func getRevision() string {
1619
return formatRevision(VERSION, REVISION, NUMBER)

runtime/core/version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"os"
77
)
88

9-
const VERSION = "1.0.48"
10-
const REVISION = "ee7e3078596587e9734a1e6f208d258b8c6fa090+1"
11-
const NUMBER = 305
9+
const VERSION = "1.0.49"
10+
const REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
11+
const NUMBER = 308
1212

1313
// these fields will be filled by compiler, see CORE_VERSION in cmd/xgo/version.go
1414
const XGO_VERSION = ""

0 commit comments

Comments
 (0)