version update

This commit is contained in:
John
2019-10-24 21:05:23 +08:00
parent 28326606f5
commit 58b2efc900
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,11 @@
package main
import (
"context"
"fmt"
)
func main() {
c := context.WithValue(context.Background(), "key", "value")
fmt.Printf("%v", c)
}

View File

@ -1,4 +1,4 @@
package gf
const VERSION = "v1.9.9"
const VERSION = "v1.9.10"
const AUTHORS = "john<john@goframe.org>"