From d879030c235ef2d7b75424f574b99fd9b44d965d Mon Sep 17 00:00:00 2001 From: Jace Browning Date: Fri, 14 Oct 2016 21:41:43 -0400 Subject: [PATCH] Bump version to 0.6.8 --- docs/about/release-notes.md | 4 ++++ flask_api/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index 5d8ff0d..671f7b2 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -2,6 +2,10 @@ This project is currently in alpha. It is functional and well tested but you are advised to pay close attention to the release notes when upgrading to future versions. +## Version 0.6.8 + +* Fixed `AttributeError` with Blueprint handlers in Flask 0.11+ + ## Version 0.6.7 * Fixed compatibility issue between Flask 0.10 and 0.11 diff --git a/flask_api/__init__.py b/flask_api/__init__.py index e34c6af..c927fd8 100644 --- a/flask_api/__init__.py +++ b/flask_api/__init__.py @@ -1,3 +1,3 @@ from flask_api.app import FlaskAPI -__version__ = '0.6.7' +__version__ = '0.6.8'