Skip to content

Commit

Permalink
Bump version 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
noirbizarre committed Dec 15, 2014
1 parent fdbc4e7 commit 0c30d73
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Changelog
=========

Current
0.4.0
-------

- Port to Flask-Restful 0.3+
- Use the default Blueprint/App mecanism
- Allow to hide some ressources or methods using @api.doc(False) or @api.hide
- Allow to hide some ressources or methods using ``@api.doc(False)`` or ``@api.hide``
- Allow to globally customize the default operationId with the ``default_id`` callable parameter

0.3.0
Expand Down
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ Flask RestPlus
.. image:: https://secure.travis-ci.org/noirbizarre/flask-restplus.png
:target: http://travis-ci.org/noirbizarre/flask-restplus
:alt: Build status
.. image:: https://coveralls.io/repos/noirbizarre/flask-restplus/badge.png?branch=master
:target: https://coveralls.io/r/noirbizarre/flask-restplus?branch=master
.. image:: https://coveralls.io/repos/noirbizarre/flask-restplus/badge.png?branch=0.4.0
:target: https://coveralls.io/r/noirbizarre/flask-restplus?branch=0.4.0
:alt: Code coverage
.. image:: https://requires.io/github/noirbizarre/flask-restplus/requirements.png?branch=master
:target: https://requires.io/github/noirbizarre/flask-restplus/requirements/?branch=master
.. image:: https://requires.io/github/noirbizarre/flask-restplus/requirements.png?tag=0.4.0
:target: https://requires.io/github/noirbizarre/flask-restplus/requirements/?tag=0.4.0
:alt: Requirements Status
.. image:: https://readthedocs.org/projects/flask-restplus/badge/?version=latest
:target: http://flask-restplus.readthedocs.org/en/latest/
.. image:: https://readthedocs.org/projects/flask-restplus/badge/?version=0.4.0
:target: http://flask-restplus.readthedocs.org/en/0.4.0/
:alt: Documentation status

Flask-RestPlus provide syntaxic suger, helpers and automatically generated `Swagger`_ documentation on top of `Flask-Restful`_.
Expand Down Expand Up @@ -133,7 +133,7 @@ With Flask-Restplus, you only import the api instance to route and document your
Documentation
=============

The documentation is hosted `on Read the Docs <http://flask-restplus.readthedocs.org/en/latest/>`_
The documentation is hosted `on Read the Docs <http://flask-restplus.readthedocs.org/en/0.4.0/>`_


.. _Swagger: http://swagger.io/
Expand Down
2 changes: 1 addition & 1 deletion flask_restplus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '0.4.dev'
__version__ = '0.4.0'
__description__ = 'Helpers, syntaxic sugar and Swagger documentation for Flask-Restful'

try:
Expand Down

0 comments on commit 0c30d73

Please sign in to comment.