Skip to content

Commit

Permalink
v3.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinburke committed Jan 27, 2022
1 parent 54fe8e9 commit adf7cd2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions go-bindata/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ import (
"fmt"
"runtime"
"sync"
"time"
)

const (
AppName = "go-bindata"
AppVersionMajor = 3
AppVersionMinor = 22
AppVersionMinor = 23
AppVersionRev = 0
)

Expand All @@ -31,7 +32,9 @@ func LongVersion() string {
longVsnOnce.Do(func() {
longVsn = fmt.Sprintf(`%s %d.%d.%d (Go runtime %s).
Copyright (c) 2010-2015, Jim Teeuwen.
Copyright (c) 2017-2020, Kevin Burke.`, AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, runtime.Version())
Copyright (c) 2017-%d, Kevin Burke.`, AppName,
AppVersionMajor, AppVersionMinor, AppVersionRev,
runtime.Version(), time.Now().Year())
})
return longVsn
}

0 comments on commit adf7cd2

Please sign in to comment.