From 61880699abfec809e4ee1c0ba58dcf2cf14cfbca Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Fri, 11 Sep 2020 09:35:21 +1000 Subject: [PATCH] 1.18.0 release --- README.rst | 3 +-- parse.py | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 473ef87..7f0075f 100644 --- a/README.rst +++ b/README.rst @@ -377,8 +377,7 @@ the pattern, the actual match represents the shortest successful match for ---- -**Version history (in brief)**: - +- 1.18.0 Correct bug in int parsing introduced in 1.16.0 (thanks @maxxk) - 1.17.0 Make left- and center-aligned search consume up to next space - 1.16.0 Make compiled parse objects pickleable (thanks @martinResearch) - 1.15.0 Several fixes for parsing non-base 10 numbers (thanks @vladikcomper) diff --git a/parse.py b/parse.py index 398d753..25bad53 100644 --- a/parse.py +++ b/parse.py @@ -377,8 +377,7 @@ ---- -**Version history (in brief)**: - +- 1.18.0 Correct bug in int parsing introduced in 1.16.0 (thanks @maxxk) - 1.17.0 Make left- and center-aligned search consume up to next space - 1.16.0 Make compiled parse objects pickleable (thanks @martinResearch) - 1.15.0 Several fixes for parsing non-base 10 numbers (thanks @vladikcomper) @@ -460,7 +459,7 @@ from __future__ import absolute_import -__version__ = '1.17.0' +__version__ = '1.18.0' # yes, I now have two problems import re