Skip to content

Commit 061e71f

Browse files
committed
Make 14.1.0 release to return message string from Kconfig.write_autoconf()
Adds commit 2a6ac31 ("Return a message from Kconfig.write_autoconf()").
1 parent 2a6ac31 commit 061e71f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Python 2 and Python 3. Previously, ``menuconfig.py`` only ran under Python 3
129129
that your ``PATH`` includes the directory where the executables end up. You can
130130
list the installed files with ``pip(3) show -f kconfiglib``.
131131

132-
All releases have a corresponding tag in the git repository, e.g. ``v14.0.0``
132+
All releases have a corresponding tag in the git repository, e.g. ``v14.1.0``
133133
(the latest version).
134134

135135
`Semantic versioning <http://semver.org/>`_ is used. There's been ten small

kconfiglib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def my_other_fn(kconf, name, arg_1, arg_2, ...):
554554
from os.path import dirname, exists, expandvars, islink, join, realpath
555555

556556

557-
VERSION = (14, 0, 0)
557+
VERSION = (14, 1, 0)
558558

559559

560560
# File layout:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
setuptools.setup(
88
name="kconfiglib",
99
# MAJOR.MINOR.PATCH, per http://semver.org
10-
version="14.0.0",
10+
version="14.1.0",
1111
description="A flexible Python Kconfig implementation",
1212

1313
# Make sure that README.rst decodes on Python 3 in environments that use

0 commit comments

Comments
 (0)