8000 Bump version number to 0.6.3 · flask-api/flask-api@d53e74a · GitHub
[go: up one dir, main page]

Skip to content

Commit d53e74a

Browse files
committed
Bump version number to 0.6.3
Also cleaned up some spelling/formatting issues for release.
1 parent 51eed27 commit d53e74a

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
**Status**: Flask API is not currently under active development or maintenance. This will be reassessed once the Django REST framework kickstarter project reaches completion.
1+
**Status**: Flask API is not currently under active development. This will be reassessed once the Django REST framework Kickstarter project reaches completion.
22

33
# [Flask API](http://www.flaskapi.org)
44

@@ -36,12 +36,12 @@ Future work on getting Flask API to a 1.0 release will include:
3636

3737
It is also possible that the core of Flask API could be refactored into an external dependency, in order to make browsable APIs easily available to any Python web framework.
3838

39-
## Installation
39+
## Installation
4040

4141
Requirements:
4242

43-
* Python 2.7 or 3.3.
44-
* Flask 0.10.
43+
* Python 2.7+ or 3.3+
44+
* Flask 0.10+
4545

4646
Install using `pip`.
4747

@@ -53,7 +53,7 @@ Import and initialize your application.
5353

5454
app = FlaskAPI(__main__)
5555

56-
## Responses
56+
## Responses
5757

5858
Return any valid response object as normal, or return a `list` or `dict`.
5959

docs/about/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This software is made available under the terms of a [BSD 2-Clause license][bsd-
44

55
---
66

7-
Copyright © 2014, Tom Christie
7+
Copyright © 2015, Tom Christie
88
All rights reserved.
99

1010
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

docs/about/release-notes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.3
6+
7+
* Fixed handling of query strings (in Python 3)
8+
* Fixed handling of empty content in `APIResposne`
9+
* Fixed escaping of angled brackets and ampersands
10+
* Added support for custom templates when extending `BrowsableAPIRenderer`
11+
512
## Version 0.6.2
613

714
* Added `HTMLRenderer`.

docs/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ Future work on getting Flask API to a 1.0 release will include:
2929
* Documentation on how to deal with request validation.
3030
* Documentation on how to deal with hyperlinking.
3131

32-
It is also possible that the core of Flask API could be refactored into an external dependancy, in order to make browsable APIs easily available to any Python web framework.
32+
It is also possible that the core of Flask API could be refactored into an external dependency, in order to make browsable APIs easily available to any Python web framework.
3333

34-
## Installation
34+
## Installation
3535

3636
Requirements:
3737

38-
* Python 2.7 or 3.3.
39-
* Flask 0.10.
38+
* Python 2.7+ or 3.3+
39+
* Flask 0.10+
4040

4141
Install using `pip`.
4242

@@ -48,15 +48,15 @@ Import and initialize your application.
4848

4949
app = FlaskAPI(__name__)
5050

51-
## Responses
51+
## Responses
5252

5353
Return any valid response object as normal, or return a `list` or `dict`.
5454

5555
@app.route('/example/')
5656
def example():
5757
return {'hello': 'world'}
5858

59-
A renderer for the response data will be selected using content negotation based on the client 'Accept' header. If you're making the API request from a regular client, this will default to a JSON response. If you're viewing the API in a browser it'll default to the browsable API HTML.
59+
A renderer for the response data will be selected using content negotiation based on the client 'Accept' header. If you're making the API request from a regular client, this will default to a JSON response. If you're viewing the API in a browser it'll default to the browsable API HTML.
6060

6161
## Requests
6262

@@ -68,7 +68,7 @@ Access the parsed request data using `request.data`. This will handle JSON or f
6868

6969
## Example
7070

71-
The following example demonstates a simple API for creating, listing, updating and deleting notes.
71+
The following example demonstrates a simple API for creating, listing, updating and deleting notes.
7272

7373
from flask import request, url_for
7474
from flask.ext.api import FlaskAPI, status, exceptions

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.2'
3+
__version__ = '0.6.3'

0 commit comments

Comments
 (0)
0