From 9508bda22059c1f4599f35cae18ce5d607124227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=85=89=E6=98=A5?= Date: Fri, 17 Jun 2022 10:50:03 +0800 Subject: [PATCH] - update --- version.go | 2 +- version_test.go | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) 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) + } +}