summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-05-01 02:04:39 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-05-01 02:04:39 +0200
commit58ca4e493f15602bc30e2977963f190882cad0fc (patch)
treea1ba842b12960e0d87bc36f484d239002e146995
parent4d0d74dc0a10e63e1372f925d0d2493cba351aa1 (diff)
Make 4.2.1 releasev4.2.1
New features: - 105c835 ("Add helper for splitting expressions") - 509e374 ("Add Choice.direct_dep field") A terminal menuconfig implementation has been added which relies on these features. Other improvements: - c1c5ef2 ("Print a warning for malformed .config lines") - 09b8c58 ("Give filename and context for UnicodeDecodeError")
-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 070917e..dbf65d2 100644
--- a/README.rst
+++ b/README.rst
@@ -199,7 +199,7 @@ installed with e.g.
$ pip(3) install kconfiglib --user
-All releases have a corresponding tag in the git repository, e.g. ``v4.2.0``
+All releases have a corresponding tag in the git repository, e.g. ``v4.2.1``
(the latest version).
`Semantic versioning <http://semver.org/>`_ is used. There's been
diff --git a/setup.py b/setup.py
index 3d371a1..a7c2b17 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import setuptools
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.PATCH, per http://semver.org
- version="4.2.0",
+ version="4.2.1",
description="A flexible Python Kconfig parser",
long_description=
open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),