diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-09-26 11:51:18 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-09-26 11:52:59 +0200 |
| commit | f877b16b3432a2f68a7079877370cce3fe47918f (patch) | |
| tree | 76f485902b8849f0660182c4abc9e329316de563 | |
| parent | 720ce88a839cc9966d4b5dfbcdbe868c33cb5965 (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.rst | 2 | ||||
| -rw-r--r-- | kconfiglib.py | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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: @@ -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 |
