Skip to content

Commit

Permalink
Clean up changelog example
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Nov 5, 2018
1 parent 8fbf6d9 commit d2ac1d1
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.rst
Expand Up @@ -23,16 +23,12 @@ Features:
# apispec<1.0.0b5
spec.add_tag({'name': 'Pet', 'description': 'Operations on pets'})
spec.add_path('/pets/', operations=...)
spec.definition('Pet')
def PetSchema(Schema)
...
spec.definition('Pet', properties=...)

# apispec>=1.0.0b5
spec.tag({'name': 'Pet', 'description': 'Operations on pets'})
spec.path('/pets/', operations=...)
spec.components.schema('Pet')
def PetSchema(Schema)
...
spec.components.schema('Pet', properties=...)


Deprecations/Removals:
Expand Down

0 comments on commit d2ac1d1

Please sign in to comment.