======
*(2017-05-02)*
- :issue:`17` via :pr:`25`: Instead of a read_headers function, cheroot now
supplies a :py:class:`HeaderReader <cheroot.server.HeaderReader>` class to
perform the same function.
Any :py:class:`HTTPRequest <cheroot.server.HTTPRequest>` object may override
the header_reader attribute to customize the handling of incoming headers.
The server module also presents a provisional implementation of
a :py:class:`DropUnderscoreHeaderReader
<cheroot.server.DropUnderscoreHeaderReader>` that will exclude any headers
containing an underscore. It remains an exercise for the
implementer to demonstrate how this functionality might be
employed in a server such as CherryPy.
- :pr:`26`: Configured TravisCI to run tests under OS X.