----------------------------
**Features**
* Use ``time.perf_counter()`` if available. Thank you, Mike! (34)
* Support Python 3.7 officially.
* Add filters for adjusting and dropping metrics getting emitted.
See documentation for more details. (40)
**Backwards incompatible changes**
* ``tags`` now defaults to ``[]`` instead of ``None`` which may affect some
expected test output.
* Adjust internals to run ``.emit()`` on backends. If you wrote your own
backend, you may need to adjust it.
* Drop support for Python 3.4. (39)
* Drop support for Python 2.7.
If you're still using Python 2.7, you'll need to pin to ``<2.0.0``. (42)
**Bug fixes**
* Document feature support in backends. (47)
* Fix ``MetricsMock.has_record()`` example. Thank you, John!