=========================
* fixed `bw project` command, it will now create a decent project file/folder
skeleton, see example below.
* minimock's 1.2.6 release breaks some usage of the library, "pin" dependency at
1.2.5
* add config option http_exception_handling, default behavior is unchanged
* add testing.runview() to make it easier to test views without a WSGI test
runner (Werkzeug Client, WebTest TestApp)
Project skeleton will look like::
foobar-dist/
|-- changelog.rst
|-- foobar
| |-- application.py
| |-- config
| | |-- __init__.py
| | |-- settings.py
| | `-- site_settings.py
| |-- __init__.py
| |-- templates
| | `-- index.html
| |-- tests
| | |-- __init__.py
| | `-- test_views.py
| `-- views.py
|-- MANIFEST.in
|-- readme.rst
`-- setup.py