summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-01-20 06:48:29 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-01-20 06:52:25 +0100
commitc95f810142fee9c3530bd94cc30979eefa6e2cce (patch)
treef38752637ddd10f8d6c33971101b438c7346c945
parent25441b9478c3a1414874d6b4599c530952e62f6e (diff)
Make 2.2.3 releasev2.2.3
Parsing performance improvements related to help texts: - c800f70 ("Simplify _deindent()") - 707204a ("Get rid of _next_help_line()") - f0a87cc ("Micro-optimize _T_HELP parsing") Also includes various code nits. Brings 'make scriptconfig' with allyesconfig.py down to 1.3 seconds, including the 'make' overhead.
-rw-r--r--README.rst2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index b24d234..c96b920 100644
--- a/README.rst
+++ b/README.rst
@@ -148,7 +148,7 @@ installed with e.g.
$ pip(3) install kconfiglib --user
-All releases have a corresponding tag in the git repository, e.g. ``v2.2.2``.
+All releases have a corresponding tag in the git repository, e.g. ``v2.2.3``.
`Semantic versioning <http://semver.org/>`_ is used.
Installation for the Linux kernel
diff --git a/setup.py b/setup.py
index e62d747..beb448d 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ with open(os.path.join(here_dir, "README.rst")) as f:
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.MAINTENANCE per http://semver.org
- version="2.2.2",
+ version="2.2.3",
description="A flexible Python Kconfig parser",
long_description=long_description,
url="https://github.com/ulfalizer/Kconfiglib",