Bump version

This commit is contained in:
Unknwon
2017-10-14 17:05:30 -04:00
parent 696b7e6429
commit 5b3e00af70
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ const (
// Maximum allowed depth when recursively substituing variable names.
_DEPTH_VALUES = 99
_VERSION = "1.29.2"
_VERSION = "1.30.0"
)
// Version returns current package version literal.
+2 -2
View File
@@ -446,10 +446,10 @@ func (k *Key) Strings(delim string) []string {
}
runes := []rune(str)
vals := make([]string, 0)
idx := 0
vals := make([]string, 0, 2)
var buf bytes.Buffer
escape := false
idx := 0
for {
if escape {
escape = false