mirror of
https://github.com/go-ini/ini.git
synced 2026-06-19 21:46:45 +02:00
Bump version
This commit is contained in:
@@ -35,7 +35,7 @@ const (
|
|||||||
|
|
||||||
// Maximum allowed depth when recursively substituing variable names.
|
// Maximum allowed depth when recursively substituing variable names.
|
||||||
_DEPTH_VALUES = 99
|
_DEPTH_VALUES = 99
|
||||||
_VERSION = "1.29.2"
|
_VERSION = "1.30.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Version returns current package version literal.
|
// Version returns current package version literal.
|
||||||
|
|||||||
@@ -446,10 +446,10 @@ func (k *Key) Strings(delim string) []string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
runes := []rune(str)
|
runes := []rune(str)
|
||||||
vals := make([]string, 0)
|
vals := make([]string, 0, 2)
|
||||||
idx := 0
|
|
||||||
var buf bytes.Buffer
|
var buf bytes.Buffer
|
||||||
escape := false
|
escape := false
|
||||||
|
idx := 0
|
||||||
for {
|
for {
|
||||||
if escape {
|
if escape {
|
||||||
escape = false
|
escape = false
|
||||||
|
|||||||
Reference in New Issue
Block a user