Skip to content

Commit

Permalink
Make 14.1.0 release to return message string from Kconfig.write_autoc…
Browse files Browse the repository at this point in the history
…onf()

Adds commit 2a6ac31 ("Return a message from Kconfig.write_autoconf()").
  • Loading branch information
ulfalizer committed Jan 31, 2020
1 parent 2a6ac31 commit 061e71f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,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. ``v14.0.0``
All releases have a corresponding tag in the git repository, e.g. ``v14.1.0``
(the latest version).

`Semantic versioning <http://semver.org/>`_ is used. There's been ten small
Expand Down
2 changes: 1 addition & 1 deletion kconfiglib.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ def my_other_fn(kconf, name, arg_1, arg_2, ...):
from os.path import dirname, exists, expandvars, islink, join, realpath


VERSION = (14, 0, 0)
VERSION = (14, 1, 0)


# File layout:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.PATCH, per http://semver.org
version="14.0.0",
version="14.1.0",
description="A flexible Python Kconfig implementation",

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

0 comments on commit 061e71f

Please sign in to comment.