summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2019-09-26 11:51:18 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2019-09-26 11:52:59 +0200
commitf877b16b3432a2f68a7079877370cce3fe47918f (patch)
tree76f485902b8849f0660182c4abc9e329316de563
parent720ce88a839cc9966d4b5dfbcdbe868c33cb5965 (diff)
Make 12.14.1 releasev12.14.1
Fixes a preprocessor issue, in commit 720ce88 ("Fix handling of parentheses in macro argument values").
-rw-r--r--README.rst2
-rw-r--r--kconfiglib.py2
-rw-r--r--setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index af74af6..29ebc44 100644
--- a/README.rst
+++ b/README.rst
@@ -97,7 +97,7 @@ Python 2 and Python 3. Previously, ``menuconfig.py`` only ran under Python 3
that your ``PATH`` includes the directory where the executables end up. You can
list the installed files with ``pip(3) show -f kconfiglib``.
-All releases have a corresponding tag in the git repository, e.g. ``v12.14.0``
+All releases have a corresponding tag in the git repository, e.g. ``v12.14.1``
(the latest version).
`Semantic versioning <http://semver.org/>`_ is used. There's been
diff --git a/kconfiglib.py b/kconfiglib.py
index 6c42ca2..ecf9726 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -554,7 +554,7 @@ from glob import iglob
from os.path import dirname, exists, expandvars, islink, join, realpath
-VERSION = (12, 14, 0)
+VERSION = (12, 14, 1)
# File layout:
diff --git a/setup.py b/setup.py
index 839bbb8..7e9ede4 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@ import setuptools
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.PATCH, per http://semver.org
- version="12.14.0",
+ version="12.14.1",
description="A flexible Python Kconfig implementation",
# Make sure that README.rst decodes on Python 3 in environments that use