From 92a6e969259ed937592d4625affda07d3ee4864d Mon Sep 17 00:00:00 2001 From: Tao He Date: Thu, 3 Nov 2022 21:02:00 +0800 Subject: [PATCH] Upgrade to v3.15. Signed-off-by: Tao He --- docs/conf.py | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6001bab..c04ece1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,7 +54,7 @@ # General information about the project. project = 'parsec' -copyright = '2015-2021, He Tao' +copyright = '2015-2022, He Tao' author = 'He Tao' # The version info for the project you're documenting, acts as replacement for @@ -62,9 +62,9 @@ # built documents. # # The short X.Y version. -version = '3.12' +version = '3.15' # The full version, including alpha/beta/rc tags. -release = '3.12' +release = '3.15' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c769045..97c2b94 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name = 'parsec', - version = '3.14', + version = '3.15', description = 'parser combinator.', long_description = 'A universal Python parser combinator library inspired by Parsec library of Haskell.', author = 'He Tao',