Skip to content

Commit

Permalink
release v1.0.49
Browse files Browse the repository at this point in the history
  • Loading branch information
xhd2015 committed Sep 20, 2024
1 parent 37977b0 commit cf201d2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 13 deletions.
6 changes: 3 additions & 3 deletions cmd/xgo/runtime_gen/core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"os"
)

const VERSION = "1.0.48"
const REVISION = "ee7e3078596587e9734a1e6f208d258b8c6fa090+1"
const NUMBER = 305
const VERSION = "1.0.49"
const REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
const NUMBER = 308

// these fields will be filled by compiler, see CORE_VERSION in cmd/xgo/version.go
const XGO_VERSION = ""
Expand Down
17 changes: 10 additions & 7 deletions cmd/xgo/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@ package main

import "fmt"

// auto updated
const VERSION = "1.0.48"
const REVISION = "40aa40fc76231d2c9ee681be5456b26d4255f123+1"
const NUMBER = 307
// REVISION and NUMBER are auto updated when run 'git commit'
// VERSION is manully updated when needed a new tag

Check warning on line 6 in cmd/xgo/version.go

View workflow job for this annotation

GitHub Actions / check-build

"manully" should be "manually".
// see also runtime/core/version.go
const VERSION = "1.0.49"
const REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
const NUMBER = 308

// the matching runtime/core's version
// manually updated
const CORE_VERSION = "1.0.48"
const CORE_REVISION = "ee7e3078596587e9734a1e6f208d258b8c6fa090+1"
const CORE_NUMBER = 305
const CORE_VERSION = "1.0.49"
const CORE_REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
const CORE_NUMBER = 308

func getRevision() string {
return formatRevision(VERSION, REVISION, NUMBER)
Expand Down
6 changes: 3 additions & 3 deletions runtime/core/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"os"
)

const VERSION = "1.0.48"
const REVISION = "ee7e3078596587e9734a1e6f208d258b8c6fa090+1"
const NUMBER = 305
const VERSION = "1.0.49"
const REVISION = "37977b002ee8cc375e071b7ac23e8bb67a2de64d+1"
const NUMBER = 308

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

0 comments on commit cf201d2

Please sign in to comment.