diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e4350fa2..39d1076a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,11 @@ are used for versioning (schema follows below): 0.3.4 to 0.4). - All backwards incompatible changes are mentioned in this document. +0.5.15 +------ +2015-09-17 + +- Minor fixes. 0.5.14 ------ diff --git a/CREDITS.rst b/CREDITS.rst index e5fb6a41..a887d0e4 100644 --- a/CREDITS.rst +++ b/CREDITS.rst @@ -6,9 +6,14 @@ Authors Contributors ------------ +Thanks to the following people for their contributions: + - `Maximilian Kindshofer `_ for German translations. - `Thomas Wajs `_ - for number of minor yet valueable fixes. + for number of minor yet valuable fixes. +- `garmoncheg + `_ + for minor fixes. diff --git a/setup.py b/setup.py index c59fff24..4e1c5632 100644 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ for static_dir in static_dirs: for locale_dir in locale_dirs: locale_files += [os.path.join(locale_dir, f) for f in os.listdir(locale_dir)] -version = '0.5.14' +version = '0.5.15' install_requires = [ 'Pillow>=2.0.0', diff --git a/src/fobi/__init__.py b/src/fobi/__init__.py index 2ec68b9d..b7490230 100644 --- a/src/fobi/__init__.py +++ b/src/fobi/__init__.py @@ -1,6 +1,6 @@ __title__ = 'django-fobi' -__version__ = '0.5.14' -__build__ = 0x000043 +__version__ = '0.5.15' +__build__ = 0x000044 __author__ = 'Artur Barseghyan ' __copyright__ = '2014-2015 Artur Barseghyan' __license__ = 'GPL 2.0/LGPL 2.1'