- update
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

master v1.0.7
李光春 2 years ago
parent 979952fd20
commit 4652fed98f

@ -1,3 +1,3 @@
package gocache
const Version = "1.0.6"
const Version = "1.0.7"

@ -0,0 +1,13 @@
package gocache
import "testing"
func TestVersion(t *testing.T) {
t.Log(Version)
}
func BenchmarkVersion(b *testing.B) {
for i := 0; i < b.N; i++ {
b.Log(Version)
}
}
Loading…
Cancel
Save