File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
# HISTORY
2
2
3
+ - v1.1.0
4
+ - improved any -> string/bool/int/uint/float/complex/duration
5
+ - fixed toBool
6
+ - BREAK: toBool(3) => true. In old versions, only convert number `1` to `true`. Since v1.1.0, any non-Zero number will be converted to `true`.
7
+
3
8
- v1.0.2
4
9
- improved bool/duration/time[Slice/Map] <-> any converters
5
10
- added TrimQuotes, StripQuotes
Original file line number Diff line number Diff line change 7
7
[ ![ codecov] ( https://codecov.io/gh/hedzr/evendeep/branch/master/graph/badge.svg )] ( https://codecov.io/gh/hedzr/evendeep )
8
8
[ ![ Coverage Status] ( https://coveralls.io/repos/github/hedzr/evendeep/badge.svg?branch=master )] ( https://coveralls.io/github/hedzr/evendeep?branch=master )
9
9
10
- Per -field copying deeply, and comparing deeply abilities.
10
+ This is a standard deepcopy library. It provides per -field copying deeply, and compares deeply abilities.
11
11
12
12
This library is designed for making everything customizable.
13
13
@@ -50,6 +50,11 @@ This library is designed for making everything customizable.
50
50
51
51
## History
52
52
53
+ - v1.1.0
54
+ - improved any -> string/bool/int/uint/float/complex/duration
55
+ - fixed toBool
56
+ - BREAK: toBool(3) => true. In old versions, only convert number ` 1 ` to ` true ` . Since v1.1.0, any non-Zero number will be converted to ` true ` .
57
+
53
58
- v1.0.2
54
59
- improved bool/duration/time[ Slice/Map] <-> any converters
55
60
- added TrimQuotes, StripQuotes
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ package evendeep
2
2
3
3
const (
4
4
// Version string for hedzr/evendeep package
5
- Version = "1.0.2 "
5
+ Version = "1.1.0 "
6
6
)
You can’t perform that action at this time.
0 commit comments