* fix schema for `timedelta` as number, [325](https://github.com/pydantic/pydantic/pull/325) by tiangolo
* prevent validators being called repeatedly after inheritance, [327](https://github.com/pydantic/pydantic/pull/327) by samuelcolvin
* prevent duplicate validator check in ipython, fix [312](https://github.com/pydantic/pydantic/pull/312) by samuelcolvin
* add "Using Pydantic" section to docs, [323](https://github.com/pydantic/pydantic/pull/323) by tiangolo & [#326](https://github.com/pydantic/pydantic/pull/326) by samuelcolvin
* fix schema generation for fields annotated as `: dict`, `: list`,
`: tuple` and `: set`, [330](https://github.com/pydantic/pydantic/pull/330) & [#335](https://github.com/pydantic/pydantic/pull/335) by nkonin
* add support for constrained strings as dict keys in schema, [332](https://github.com/pydantic/pydantic/pull/332) by tiangolo
* support for passing Config class in dataclasses decorator, [276](https://github.com/pydantic/pydantic/pull/276) by jarekkar
(**breaking change**: this supersedes the `validate_assignment` argument with `config`)
* support for nested dataclasses, [334](https://github.com/pydantic/pydantic/pull/334) by samuelcolvin
* better errors when getting an `ImportError` with `PyObject`, [309](https://github.com/pydantic/pydantic/pull/309) by samuelcolvin
* rename `get_validators` to `__get_validators__`, deprecation warning on use of old name, [338](https://github.com/pydantic/pydantic/pull/338) by samuelcolvin
* support `ClassVar` by excluding such attributes from fields, [184](https://github.com/pydantic/pydantic/pull/184) by samuelcolvin