summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-12-24 20:31:29 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-12-24 20:52:41 +0100
commit16539b4f223fa5ea0afef409e5bd3fd62b90cfde (patch)
treee4c6869a8378284d064080a0aa63eb3a8f4dd08a
parentb64c96124124b22601d01af038b258c58deb81c8 (diff)
Make 10.35.0 releasev10.35.0
- Commit 3a3559f ("menuconfig: Prompt for save if a different .config would be saved") improves the behavior of menuconfig.py when Kconfig files are modified between sessions, fixing issue #63. Modifying Kconfig files in a way that would affect the written .config now always makes the menuconfig prompts for saving the configuration on exit. A new Kconfig.missing_syms attribute is added as well, which was needed to implement the improved behavior with public APIs. - Commit b64c961 ("Warn for '# CONFIG_FOO is not set' when FOO is referenced but undefined") fixes a small oversight re. the assignment-to-undefined-symbol warning.
-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 4924f1a..0aa4c4e 100644
--- a/README.rst
+++ b/README.rst
@@ -86,7 +86,7 @@ available in the Python 2 version of the standard ``curses`` module.
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. ``v10.34.0``.
+All releases have a corresponding tag in the git repository, e.g. ``v10.35.0``.
(the latest version).
`Semantic versioning <http://semver.org/>`_ is used. There's been
diff --git a/setup.py b/setup.py
index e641b0a..3eaf3e9 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ import setuptools
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.PATCH, per http://semver.org
- version="10.34.0",
+ version="10.35.0",
description="A flexible Python Kconfig parser",
# Make sure that README.rst decodes on Python 3 in environments that use