Skip to content

Commit b52bcfa

Browse files
committed
update docs, v0.3.15
1 parent a4e7e8e commit b52bcfa

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

docs/release_log.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Release Log
22
===========
3+
* 0.3.15 - March 21, 2016
4+
- Fix string format when `empty_attribute_default = None` (#45)
5+
- Include tests in release source tarball (#46)
36
* 0.3.14 - March 18, 2016
47
- Add `CONSTANTS.empty_attribute_default` to customize value returned for empty attributes (#44)
58
* 0.3.13 - March 14, 2016

nameparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 3, 14)
1+
VERSION = (0, 3, 15)
22
__version__ = '.'.join(map(str, VERSION))
33
__author__ = "Derek Gulbranson"
44
__author_email__ = '[email protected]'

nameparser/config/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,7 @@ class Constants(object):
154154
"""
155155
empty_attribute_default = ''
156156
"""
157-
Default return value for empty attributes. Setting this to something other than empty
158-
string will causes :py:attr:`string_format` not to work.
157+
Default return value for empty attributes.
159158
160159
.. doctest::
161160

0 commit comments

Comments
 (0)