diff --git a/CHANGES b/CHANGES index ebd1f3a2..a369bf65 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,12 @@ Changelog Changes in Flask-Restless-NG ============================ +Version 0.0.2 +------------- +- New serializer (2-3x faster) +- Added lru_cache to helpers to reduce number of recursive calls (better performance) + + Version 0.0.1 ------------- diff --git a/README b/README index 7dc173f3..a0f91043 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ This is a fork of no longer maintained [Flask-Restless](https://github.com/jfinkels/flask-restless) module. The goal of this fork is to keep it compatible with the latest version of Flask and SQLAlchemy, performance -improvements and bug fixing +improvements (faster serializer, etc) and bug fixing ## Introduction ## diff --git a/flask_restless/__init__.py b/flask_restless/__init__.py index 9dcda5e1..a938b906 100644 --- a/flask_restless/__init__.py +++ b/flask_restless/__init__.py @@ -17,7 +17,7 @@ #: #: This should be the same as the version specified in the :file:`setup.py` #: file. -__version__ = '0.0.1' +__version__ = '0.0.2' # The following names are available as part of the public API for # Flask-Restless. End users of this package can import these names by doing