diff --git a/version.go b/version.go index db23be7..3edef25 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package gocache -const Version = "1.0.6" +const Version = "1.0.7" diff --git a/version_test.go b/version_test.go new file mode 100644 index 0000000..aee572e --- /dev/null +++ b/version_test.go @@ -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) + } +}