From d3b6230c04284301f4c41910115b2c5a120b8fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Jaworski?= Date: Wed, 18 Apr 2018 11:25:42 +0200 Subject: [PATCH] prepare new release --- README.md | 2 +- src/graceful/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b5a6ab5..cd75b64 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Features: through `OPTIONS` requests * painless validation * 100% tests coverage -* falcon>=0.3.0 (tested up to 1.1.x) +* falcon>=0.3.0 (tested up to 1.4.x) * python3 exclusive (tested from 3.3 to 3.6) Community behind graceful is starting to grow but we don't have any mailing diff --git a/src/graceful/__init__.py b/src/graceful/__init__.py index 7f28eb5..5725372 100644 --- a/src/graceful/__init__.py +++ b/src/graceful/__init__.py @@ -3,5 +3,5 @@ It is inspired by Django REST Framework package. Mostly by how object serialization is done but more emphasis is put on API to be self-descriptive. """ -VERSION = (0, 6, 0) # PEP 386 # noqa +VERSION = (0, 6, 1) # PEP 386 # noqa __version__ = ".".join([str(x) for x in VERSION]) # noqa