mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
uprev, add links to contributors in history
This commit is contained in:
+5
-4
@@ -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)
|
||||
...................
|
||||
|
||||
@@ -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
@@ -2,4 +2,4 @@ from distutils.version import StrictVersion
|
||||
|
||||
__all__ = ['VERSION']
|
||||
|
||||
VERSION = StrictVersion('0.8.1')
|
||||
VERSION = StrictVersion('0.9.0')
|
||||
|
||||
Reference in New Issue
Block a user