Skip to content

Commit

Permalink
Merge pull request #346 from flask-restful/release-0.3.0
Browse files Browse the repository at this point in the history
Update package for release 0.3.0
  • Loading branch information
joshfriend committed Nov 23, 2014
2 parents b32e937 + 2fd370a commit 8adc704
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 52 deletions.
112 changes: 66 additions & 46 deletions AUTHORS.md
Expand Up @@ -4,49 +4,69 @@ Authors
A huge thanks to all of our contributors:


- Andrew Dunham
- Antonio Herraiz
- Artur Rodrigues
- Bennett, Bryan
- David Baumgold
- David Boucha
- David Crawford
- Dimitris Theodorou
- Doug Black
- Frank Stratton
- Frank Stratton ☺
- Garret Raziel
- Gilles Dartiguelongue
- Giorgio Salluzzo
- Guillaume BINET
- Jacob Magnusson
- Joakim Ekberg
- Johannes
- JuneHyeon Bae
- Kamil Gałuszka
- Kevin Burke
- Kevin Deldycke
- Kyle Conroy
- Lance Ingle
- Lars Holm Nielsen
- Miguel Grinberg
- Mihai Tomescu
- Pavel Tyslyatsky
- Petrus J.v.Rensburg
- Piotr Husiatyński
- Robert Warner
- Ryan Horn
- Sam Kimbrel
- Victor Neo
- Yaniv Aknin
- bret barker
- kelvinhammond
- lyschoening
- mniebla
- muchosalsa
- nixdata
- papaeye
- saml
- siavashg
- silasray
- y-p
- Alex Gaynor
- Andrew Dunham
- Andriy Yurchuk
- Antonio Herraiz
- Artur Rodrigues
- Axel Haustant
- Belousow Makc
- Bennett, Bryan
- Bret Barker
- Bulat Bochkariov
- Cameron Brandon White
- Dan Quirk
- David Arnold
- David Baumgold
- David Boucha
- David Crawford
- Dimitris Theodorou
- Doug Black
- Evan Dale Aromin
- Frank Stratton
- Frank Stratton ☺
- Garret Raziel
- Gary Belvin
- Gilles Dartiguelongue
- Giorgio Salluzzo
- Guillaume BINET
- Jacob Magnusson
- James Booth
- Joakim Ekberg
- Johannes
- Josh Friend
- Joshua C. Randall
- JuneHyeon Bae
- Kamil Gałuszka
- Kelvin Hammond
- Kevin Burke
- Kevin Deldycke
- Kevin Funk
- Kyle Conroy
- Lance Ingle
- Lars Holm Nielsen
- Lars Schöning
- Mario Niebla
- Matt Wright
- Max Peterson
- Miguel Grinberg
- Mihai Tomescu
- Pavel Tyslyatsky
- Petrus J.v.Rensburg
- Philippe Ndiaye
- Piotr Husiatyński
- Prasanna Swaminathan
- Robert Warner
- Ryan Horn
- Sam Kimbrel
- Sasha Baranov
- Silas Ray
- Sven-Hendrik Haase
- Victor Neo
- WooParadog
- Xiadong Zhu
- Yaniv Aknin
- nixdata
- papaeye
- pingz
- saml
20 changes: 19 additions & 1 deletion CHANGES.md
Expand Up @@ -3,6 +3,24 @@ Flask-RESTful Changelog

Here you can see the full list of changes between each Flask-RESTful release.

Version 0.3.0
--------------

Released November 22, 2014

- Adds `@api.resource` decorator ([#311](https://github.com/flask-restful/flask-restful/pull/311))
- Adds custom error handling ([#225](https://github.com/flask-restful/flask-restful/pull/225))
- Adds `RequestParser` inheritance ([#249](https://github.com/flask-restful/flask-restful/pull/249))
- Adds 1/0 as valid values for `inputs.boolean` ([#341](https://github.com/flask-restful/flask-restful/pull/341))
- Improved `datetime` serialization and deserialization ([#345](https://github.com/flask-restful/flask-restful/pull/345))
- `init_app` now follows Flask extension guidelines ([#130](https://github.com/flask-restful/flask-restful/pull/130))
- `types` module renamed to `inputs` ([#243](https://github.com/flask-restful/flask-restful/pull/243))
- Fixes `inputs.boolean` inability to parse values from JSON ([#314](https://github.com/flask-restful/flask-restful/pull/314))
- Fixes `RequestParser` inability to use arguments from multiple sources at once ([#261](https://github.com/flask-restful/flask-restful/pull/261))
- Fixes missing `Allow` header when HTTP 405 is returned ([#294](https://github.com/flask-restful/flask-restful/pull/294))
- Doc fixes and updates.


Version 0.2.12
--------------

Expand All @@ -18,7 +36,7 @@ Version 0.2.11
Released January 17, 2014

- Fixes the List field when marshalling a list of dictionaries. ([#165](https://github.com/twilio/flask-restful/issues/165))
- Adds Boolean and Price types to fields.__all__ ([#180](https://github.com/twilio/flask-restful/issues/180))
- Adds Boolean and Price types to fields.\_\_all\_\_ ([#180](https://github.com/twilio/flask-restful/issues/180))
- Adds support for serializing a set object with a List field. ([#175](https://github.com/twilio/flask-restful/pull/175))
- Fixes support for using callables as reqparser type arguments ([#167](https://github.com/twilio/flask-restful/pull/167))
- Add configuration variable to control smart-errors behavior on 404 responses. ([#181](https://github.com/twilio/flask-restful/issues/181))
Expand Down
9 changes: 6 additions & 3 deletions CONTRIBUTING.md
Expand Up @@ -2,13 +2,16 @@ Contributing to Flask-RESTful
=============================

We welcome features and bug fixes to Flask-RESTful! Fork this project and
issue pull requests. New code must come with a set of unit tests (that pass!)
before the pull request is merged.
issue [pull requests](https://github.com/flask-restful/flask-restful/compare).
New code must come with a set of unit tests (that pass!) before the pull request
is merged.

Please refrain from using force pushes to update pull requests.

Reporting Bugs
--------------

Bugs can be filed as Issues on github.
Bugs can be filed as [Issues on github.](https://github.com/flask-restful/flask-restful/issues/new)



Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -4,8 +4,8 @@

setup(
name='Flask-RESTful',
version='0.2.12',
url='https://www.github.com/twilio/flask-restful/',
version='0.3.0',
url='https://www.github.com/flask-restful/flask-restful/',
author='Twilio API Team',
author_email='help@twilio.com',
description='Simple framework for creating REST APIs',
Expand Down

0 comments on commit 8adc704

Please sign in to comment.