8000 Release v0.7 by jacebrowning · Pull Request #75 · flask-api/flask-api · GitHub
[go: up one dir, main page]

Skip to content

Release v0.7 #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This software is made available under the terms of a [BSD 2-Clause license][bsd-2-clause].

Copyright © 2014, Tom Christie
Copyright © 2017, Tom Christie
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down
5 changes: 3 additions & 2 deletions docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

This project is currently in beta. 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.7 (unreleased)
## Version 0.7

Disabled rendering of text responses as API views.
* Disabled rendering of text responses as API views.
* Added additional HTTP status codes.

## Version 0.6.9

Expand Down
2 changes: 1 addition & 1 deletion flask_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from flask_api.app import FlaskAPI

__version__ = '0.7b2'
__version__ = '0.7'
0