From 58b2efc900392a519f74adeefc4ca4c260814001 Mon Sep 17 00:00:00 2001 From: John Date: Thu, 24 Oct 2019 21:05:23 +0800 Subject: [PATCH] version update --- .example/os/glog/glog_context.go | 11 +++++++++++ version.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .example/os/glog/glog_context.go diff --git a/.example/os/glog/glog_context.go b/.example/os/glog/glog_context.go new file mode 100644 index 000000000..8b2026df7 --- /dev/null +++ b/.example/os/glog/glog_context.go @@ -0,0 +1,11 @@ +package main + +import ( + "context" + "fmt" +) + +func main() { + c := context.WithValue(context.Background(), "key", "value") + fmt.Printf("%v", c) +} diff --git a/version.go b/version.go index f443b8461..b4f7a3785 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package gf -const VERSION = "v1.9.9" +const VERSION = "v1.9.10" const AUTHORS = "john"