1.14.5 release

This commit is contained in:
Roman Mogilatov 2016-02-26 19:34:30 +02:00
parent 52f2eedd6a
commit beb7bbd3d9
3 changed files with 6 additions and 2 deletions

View File

@ -51,7 +51,7 @@ from .errors import UndefinedProviderError
from . import catalogs from . import catalogs
catalog = catalogs catalog = catalogs
VERSION = '1.14.4' VERSION = '1.14.5'
"""Version number that follows semantic versioning. """Version number that follows semantic versioning.
:type: str :type: str

View File

@ -280,7 +280,7 @@ class Callable(Provider):
:type kwargs: dict :type kwargs: dict
""" """
if not callable(provides): if not callable(provides):
raise Error('Provider{0} expected to get callable, ' raise Error('Provider {0} expected to get callable, '
'got {0}'.format('.'.join((self.__class__.__module__, 'got {0}'.format('.'.join((self.__class__.__module__,
self.__class__.__name__)), self.__class__.__name__)),
provides)) provides))

View File

@ -11,6 +11,10 @@ Development version
------------------- -------------------
- No features. - No features.
1.14.5
------
- Fix typo in provider's error message.
1.14.4 1.14.4
------ ------
- Update documentation. - Update documentation.