diff --git a/README.rst b/README.rst index 0acf31d..5da36c1 100644 --- a/README.rst +++ b/README.rst @@ -441,6 +441,7 @@ To run the tests locally: Changelog --------- +- 1.20.1 The `%f` directive accepts 1-6 digits, like strptime (thanks @bbertincourt) - 1.20.0 Added support for strptime codes (thanks @bendichter) - 1.19.1 Added support for sign specifiers in number formats (thanks @anntzer) - 1.19.0 Added slice access to fixed results (thanks @jonathangjertsen). diff --git a/parse.py b/parse.py index d807f49..422a27d 100644 --- a/parse.py +++ b/parse.py @@ -11,7 +11,7 @@ from functools import partial -__version__ = "1.20.0" +__version__ = "1.20.1" __all__ = ["parse", "search", "findall", "with_pattern"] log = logging.getLogger(__name__)