Skip to content

v0.5.1

Choose a tag to compare

@mikeckennedy mikeckennedy released this 12 Jan 17:31
· 14 commits to main since this release

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():
   # ...