diff --git a/README.md b/README.md index 389c6c8..51d588a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Flask-profiler -**version: 1.5** [![Build Status](https://travis-ci.org/muatik/flask-profiler.svg?branch=master)](https://travis-ci.org/muatik/flask-profiler) +**version: 1.6** [![Build Status](https://travis-ci.org/muatik/flask-profiler.svg?branch=master)](https://travis-ci.org/muatik/flask-profiler) ##### Flask-profiler measures endpoints defined in your flask application; and provides you fine-grained report through a web interface. @@ -197,7 +197,7 @@ app.config["flask_profiler"] = { In order to use SQLAchemy, just specify it as the value of `storage.engine` directive as follows. Also first create an empty database with the name "flask_profiler". -```json +```python app.config["flask_profiler"] = { "storage": { "engine": "sqlalchemy", diff --git a/setup.py b/setup.py index 6e7bd31..2c0ba53 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name='flask_profiler', - version='1.5', + version='1.6', url='https://github.com/muatik/flask-profiler', license=open('LICENSE').read(), author='Mustafa Atik',