From 7200644a75bb4f3bbcf57af842fb7da4369be490 Mon Sep 17 00:00:00 2001 From: Artur Barseghyan Date: Sat, 23 Dec 2017 23:14:20 +0100 Subject: [PATCH] prepare 0.12.10 --- CHANGELOG.rst | 8 +++++++- README.rst | 2 +- setup.py | 2 +- src/fobi/__init__.py | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e61ccd7a..54d475fa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,12 @@ are used for versioning (schema follows below): 0.3.4 to 0.4). - All backwards incompatible changes are mentioned in this document. +0.12.10 +------- +2017-12-23 + +- Django 2.0 support (experimental). + 0.12.9 ------ 2017-12-21 @@ -314,7 +320,7 @@ versions it will be wiped out. ------ 2016-11-05 -Announcing dropping support of Django 1.5 and 1.6. As of 0.9.17 everything is +Announcing dropping support of Django 1.5 and 1.6. As of 0.9.13 everything is still backwards compatible with versions 1.5 and 1.6, but in future versions compatibility with these versions will be wiped out. diff --git a/README.rst b/README.rst index fef7eab1..0cc5994a 100644 --- a/README.rst +++ b/README.rst @@ -12,7 +12,7 @@ Prerequisites ============= Present ------- -- Django 1.8, 1.9, 1.10 and 1.11. +- Django 1.8, 1.9, 1.10, 1.11 and 2.0. - Python 2.7, 3.4, 3.5, 3.6 and PyPy. Past diff --git a/setup.py b/setup.py index 3a0ced05..c2dfb06c 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys from distutils.version import LooseVersion from setuptools import setup, find_packages -version = '0.12.9' +version = '0.12.10' # *************************************************************************** # ************************** Python version ********************************* diff --git a/src/fobi/__init__.py b/src/fobi/__init__.py index ba83a3d9..05e54eba 100644 --- a/src/fobi/__init__.py +++ b/src/fobi/__init__.py @@ -1,6 +1,6 @@ __title__ = 'django-fobi' -__version__ = '0.12.9' -__build__ = 0x000092 +__version__ = '0.12.10' +__build__ = 0x000093 __author__ = 'Artur Barseghyan ' __copyright__ = '2014-2017 Artur Barseghyan' __license__ = 'GPL 2.0/LGPL 2.1'