Skip to content

Commit 647b309

Browse files
committed
bump to v1.1.0
1 parent d2f3d7f commit 647b309

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Diff for: CHANGELOG

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# HISTORY
22

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+
38
- v1.0.2
49
- improved bool/duration/time[Slice/Map] <-> any converters
510
- added TrimQuotes, StripQuotes

Diff for: README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![codecov](https://codecov.io/gh/hedzr/evendeep/branch/master/graph/badge.svg)](https://codecov.io/gh/hedzr/evendeep)
88
[![Coverage Status](https://coveralls.io/repos/github/hedzr/evendeep/badge.svg?branch=master)](https://coveralls.io/github/hedzr/evendeep?branch=master)
99

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.
1111

1212
This library is designed for making everything customizable.
1313

@@ -50,6 +50,11 @@ This library is designed for making everything customizable.
5050

5151
## History
5252

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+
5358
- v1.0.2
5459
- improved bool/duration/time[Slice/Map] <-> any converters
5560
- added TrimQuotes, StripQuotes

Diff for: doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package evendeep
22

33
const (
44
// Version string for hedzr/evendeep package
5-
Version = "1.0.2"
5+
Version = "1.1.0"
66
)

0 commit comments

Comments
 (0)