10000 Merge pull request #54 from tomchristie/release/v0.6.6 · flask-api/flask-api@59bd034 · GitHub
[go: up one dir, main page]

Skip to content

Commit 59bd034

Browse files
committed
Merge pull request #54 from tomchristie/release/v0.6.6
Release v0.6.6
2 parents 847e8cf + 90d8268 commit 59bd034

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@ python:
77
- 3.4
88
- 3.5
99

10+
env:
11+
matrix:
12+
- FLASK_VERSION=0.10.1
13+
# TODO: enable when future release is available:
14+
# http://flask.pocoo.org/docs/0.11/changelog/#version-0-10-2
15+
# - FLASK_VERSION=0.10.2
16+
- FLASK_VERSION=0.11.0
17+
1018
install:
1119
- pip install -r requirements.txt
20+
- pip install flask==${FLASK_VERSION} # override version for the build matrix
1221
- pip install coverage==3.6
1322
- pip install python-coveralls==2.4.0
1423
- export PYTHONPATH=.

docs/about/release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
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.
44

5+
## Version 0.6.6
6+
7+
* Updated dependencies to allow newer versions Flask
8+
59
## Version 0.6.5
610

711
* Replaced periods in page titles with spaces

flask_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from flask_api.app import FlaskAPI
22

3-
__version__ = '0.6.5'
3+
__version__ = '0.6.6'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Production
2-
Flask ~= 0.10.1
2+
Flask >= 0.10.1
33

44
# Development
55
coverage ~= 3.7.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
author_email = 'tom@tomchristie.com'
1717
license = 'BSD'
1818
install_requires = [
19-
'Flask == 0.10.1',
19+
'Flask >= 0.10.1',
2020
]
2121

2222
long_description = """Browsable web APIs for Flask."""

0 commit comments

Comments
 (0)
0