summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-02-07 03:58:50 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-02-07 04:30:19 +0100
commit4b31adf8efbb5341c369b32022401df65f419362 (patch)
tree95bbfdab1d90367f4fbcb44e64cf05d3f18a04d0
parentf66cd7155158943987570937be37b09d9ca58028 (diff)
Make 2.7.0 releasev2.7.0
Just adds f66cd71 ("Allow "n"/"m"/"y" as aliases for 0/1/2 in set_value()").
-rw-r--r--README.rst4
-rw-r--r--setup.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index b582b35..b09ba89 100644
--- a/README.rst
+++ b/README.rst
@@ -168,7 +168,7 @@ installed with e.g.
$ pip(3) install kconfiglib --user
-All releases have a corresponding tag in the git repository, e.g. ``v2.6.0``.
+All releases have a corresponding tag in the git repository, e.g. ``v2.7.0``.
`Semantic versioning <http://semver.org/>`_ is used.
Installation for the Linux kernel
@@ -189,7 +189,7 @@ Examples
Example scripts
~~~~~~~~~~~~~~~
-The `examples/ <https://github.com/ulfalizer/Kconfiglib/blob/master/examples>`_ directory contains some simple example scripts. Among these are the following ones:
+The `examples/ <https://github.com/ulfalizer/Kconfiglib/blob/master/examples>`_ directory contains some simple example scripts. Among these are the following ones. Make sure you run them with the latest version of Kconfiglib, as they might make use of newly added features.
- `allnoconfig.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/allnoconfig.py>`_, `allnoconfig_simpler.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/allnoconfig_simpler.py>`_, and `allyesconfig.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/allyesconfig.py>`_ implement ``make allnoconfig`` and ``make allyesconfig`` in various ways. Demonstrates menu tree walking and value setting.
diff --git a/setup.py b/setup.py
index 47adc2b..39c0bda 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import setuptools
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.PATCH, per http://semver.org
- version="2.6.0",
+ version="2.7.0",
description="A flexible Python Kconfig parser",
long_description=
open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),