Skip to content

Commit 4cd81e3

Browse files
committed
update changelog
1 parent 78d3624 commit 4cd81e3

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
--------------------------------------------------
2+
<a name="0.6.7"></a>
3+
# 0.6.7 (2018-05-29)
4+
5+
## Changes
6+
- supports multiple object validators [#22](https://github.com/icebob/fastest-validator/issues/22) by [@mauricedoepke](https://github.com/mauricedoepke)
7+
```js
8+
const schema = {
9+
list: [
10+
{
11+
type: "object",
12+
props: {
13+
name: {type: "string"},
14+
age: {type: "number"},
15+
}
16+
},
17+
{
18+
type: "object",
19+
props: {
20+
country: {type: "string"},
21+
code: {type: "string"},
22+
}
23+
}
24+
]
25+
};
26+
```
27+
--------------------------------------------------
228
<a name="0.6.6"></a>
329
# 0.6.6 (2018-04-04)
430

0 commit comments

Comments
 (0)