v0.5.1
Things are getting stable now.
This release fixes a bug where the status code is not passed as part of the response. For example, the sync version is status code 201 whereas the async one is status code 200 with this bug (now fixed):
@blueprint.post('/saves/new')
@template('saves/partials/card-processing.pt', status_code=201)
def save_new():
# ...
@blueprint.post('/saves/new')
@template('saves/partials/card-processing.pt', status_code=201)
async def save_new():
# ...