From 100c8833aba0280eb6db0462f46931ec8644722c Mon Sep 17 00:00:00 2001 From: Artur Barseghyan Date: Sun, 12 Aug 2018 02:50:45 +0200 Subject: [PATCH] prepare 0.13.5 --- CHANGELOG.rst | 6 ++++++ README.rst | 3 ++- docs/changelog.rst | 6 ++++++ docs/index.rst | 3 ++- setup.py | 2 +- src/fobi/__init__.py | 2 +- 6 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 97ac028f4..31761f1d0 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.13.5 +------ +2018-08-12 + +- Minor fixes in code, tests and docs. + 0.13.4 ------ 2018-08-11 diff --git a/README.rst b/README.rst index c1b7e91aa..ca117ad72 100644 --- a/README.rst +++ b/README.rst @@ -2302,7 +2302,8 @@ Project is covered by test (functional- and browser-tests). .. note:: You are recommended to use Postgres or MySQL for testing. Tests - occasionally fail on SQLite due to very intesive IO and table locking. + occasionally fail on SQLite due to very intensive IO and SQLite table + locking. To test with all supported Python/Django versions type: diff --git a/docs/changelog.rst b/docs/changelog.rst index 97ac028f4..31761f1d0 100644 --- a/docs/changelog.rst +++ b/docs/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.13.5 +------ +2018-08-12 + +- Minor fixes in code, tests and docs. + 0.13.4 ------ 2018-08-11 diff --git a/docs/index.rst b/docs/index.rst index b8505a60e..cf9988cf8 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2302,7 +2302,8 @@ Project is covered by test (functional- and browser-tests). .. note:: You are recommended to use Postgres or MySQL for testing. Tests - occasionally fail on SQLite due to very intesive IO and table locking. + occasionally fail on SQLite due to very intensive IO and SQLite table + locking. To test with all supported Python/Django versions type: diff --git a/setup.py b/setup.py index 322719fb5..2ab68a390 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.version import LooseVersion from setuptools import setup, find_packages -version = '0.13.4' +version = '0.13.5' # *************************************************************************** # ************************** Python version ********************************* diff --git a/src/fobi/__init__.py b/src/fobi/__init__.py index 726085db4..2def4f3c3 100644 --- a/src/fobi/__init__.py +++ b/src/fobi/__init__.py @@ -1,5 +1,5 @@ __title__ = 'django-fobi' -__version__ = '0.13.4' +__version__ = '0.13.5' __author__ = 'Artur Barseghyan ' __copyright__ = '2014-2018 Artur Barseghyan' __license__ = 'GPL 2.0/LGPL 2.1'