uprev, add links to contributors in history

This commit is contained in:
Samuel Colvin
2018-04-28 19:11:37 +01:00
parent dc07277017
commit 36a20613fb
3 changed files with 7 additions and 5 deletions
+5 -4
View File
@@ -3,12 +3,13 @@
History
-------
v0.8.1 (2018-XX-XX)
v0.9.0 (2018-04-28)
...................
* tweak email-validator import error message #145
* fix parse error of parse_date() and parse_datetime() when input is 0 #144
* add ``Config.anystr_strip_whitespace`` and ``strip_whitespace`` kwarg to ``constr``, by default values is `False` #163
* add ``ConstrainedFloat``, ``confloat``, ``PositiveFloat`` and ``NegativeFloat`` types #166
* fix parse error of ``parse_date()`` and ``parse_datetime()`` when input is 0 #144, thanks @YannLuo
* add ``Config.anystr_strip_whitespace`` and ``strip_whitespace`` kwarg to ``constr``,
by default values is ``False`` #163, thanks @Gr1N
* add ``ConstrainedFloat``, ``confloat``, ``PositiveFloat`` and ``NegativeFloat`` types #166, thanks @Gr1N
v0.8.0 (2018-03-25)
...................
+1
View File
@@ -28,6 +28,7 @@ TMP_HISTORY_FILE = os.path.join(THIS_DIR, '.TMP_HISTORY.rst')
with open(REAL_HISTORY_FILE) as f:
history = f.read()
history = re.sub('#(\d+)', r'`#\1 <https://github.com/samuelcolvin/pydantic/pull/\1>`_', history)
history = re.sub('(thanks(?: to)? *)@(\S+)', r'\1`@\2 <https://github.com/\2>`_', history, flags=re.I)
with open(TMP_HISTORY_FILE, 'w') as f:
f.write(history)
+1 -1
View File
@@ -2,4 +2,4 @@ from distutils.version import StrictVersion
__all__ = ['VERSION']
VERSION = StrictVersion('0.8.1')
VERSION = StrictVersion('0.9.0')