Skip to content

Commit

Permalink
release 0.9.22
Browse files Browse the repository at this point in the history
  • Loading branch information
baverman committed Jul 31, 2018
1 parent a63b54e commit 333fd0c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
0.9.22
======

* Schema introspection for view functions

.. code:: python
import covador
from covador.flask import query_string
@query_string(boo=int)
def view():
pass
print(view.schema.items)
# {'boo': <covador.types.item object at 0x7fb2c9dad208>}
0.9.21
======

Expand Down
2 changes: 1 addition & 1 deletion covador/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
from .vdecorator import ValidationDecorator
from .types import *

version = '0.9.21'
version = '0.9.22'
schema = make_schema(Map)
list_schema = make_schema(ListMap)

0 comments on commit 333fd0c

Please sign in to comment.