diff --git a/version.go b/version.go index 7905c29..c25a5fd 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package gostorage -const Version = "1.0.9" +const Version = "1.0.10" diff --git a/version_test.go b/version_test.go index d5d2be1..dd3540e 100644 --- a/version_test.go +++ b/version_test.go @@ -5,3 +5,9 @@ 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) + } +}