diff --git a/CHANGELOG.md b/CHANGELOG.md index afd3ceb..ad7cdce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## 2.1.0 +Adds support for Flask Blueprints. + ## 2.0.1 Fixes Issue #124 where only the first of multiple headers with the same name would be passed through. diff --git a/README.rst b/README.rst index 396b52d..1843190 100644 --- a/README.rst +++ b/README.rst @@ -24,9 +24,9 @@ extension. There are three examples shown in the `examples `__ directory, showing the major use cases. The suggested configuration is the -`simple\_example.py `__, +`app\_based\_example.py `__, or the -`app\_example.py `__. +`view\_based\_example.py `__. A full list of options can be found in the `documentation `__. diff --git a/flask_cors/version.py b/flask_cors/version.py index 3f39079..a33997d 100644 --- a/flask_cors/version.py +++ b/flask_cors/version.py @@ -1 +1 @@ -__version__ = '2.0.1' +__version__ = '2.1.0'