Skip to content

Version 2.0.1

Compare
Choose a tag to compare
@greyli greyli released this 16 Aug 00:23
· 81 commits to main since this release

What's Changed

  • Fix typing and documentation for responses parameter on doc decorator by @tsokalski in #467
  • Add Config field by @greyli in #469

Example usage:

from apiflask import APIFlask, Schema
from apiflask.fields import Config

app = APIFlask(__name__)
app.config['API_TITLE'] = 'Pet API'

class FooSchema(Schema):
    title = Config('API_TITLE')

New Contributors

Full Changelog: 2.0.0...2.0.1