- Fixed bug when auto generating documentation for GET endpoints that contained a parameter that was an array or object. It wasn't getting json dumped, so when the request was made to generate the example response it would get a 400 error. - Fixed a few typos and bugs in the README quick start example.
1.3.0
-------------------
- Added a Response class that can be returned from logic functions in order to add/modify response headers.
1.2.2
-------------------
- More fixes for Python 3.
1.2.1
-------------------
- Fixed sphinx build error encountered on Sphinx v1.6.1+ when checking if the http domain has already been added.
1.2.0
-------------------
- Added support for Python 3.
1.1.4
-------------------
- Updates doctor to not parse json bodies on GET/DELETE requests, and instead try to parse them from the query string or form parameters. - Fixes a bug introducded in v1.1.3. This bug would only occur if a logic function was decorated and that decorator passed a positional argument to the logic function. Doctor would think the positional argument passed by the decorator was a required request parameter even if it was specified to be omitted in the router using omit_args.