From 9b87ad921b5d95cbc002714d1ce4b98249811856 Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sat, 8 Sep 2018 02:03:52 +0200 Subject: Make 10.6.0 release New features: - Commit ac8d152 ("menuconfig: Add support for custom color schemes (aka styles)"), contributed by Mitja Horvat (pinkfluid), adds support for configuring the style (colors and attributes) of menuconfig interface elements by setting a new MENUCONFIG_STYLE environment variable. The format of MENUCONFIG_STYLE is documented in the menuconfig.py module docstring. This format is now used internally as well to define the predefined styles. - Commit a092257 ("Allow macro expansion within symbol names") adds support for expanding macros within symbol names. This could be used e.g. to define template Kconfig files that get instantiated by setting preprocessor variables before including them. Other changes: - Commit 6683213 ("Allow user values on 'option env' symbols") makes it possible to give 'option env' symbols user values. There's no good reason to disallow it (it's a leftover from an older way of implementing them), and it simplifies the code a bit. Note that 'option env' symbols are only supported for backwards compatibility at this point. Environment variables can be expanded directly. --- README.rst | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 29e2853..304f9f1 100644 --- a/README.rst +++ b/README.rst @@ -73,7 +73,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.5.0``. +All releases have a corresponding tag in the git repository, e.g. ``v10.6.0``. (the latest version). `Semantic versioning `_ is used. There's been diff --git a/setup.py b/setup.py index a51fc85..8df99d8 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.5.0", + version="10.6.0", description="A flexible Python Kconfig parser", # Make sure that README.rst decodes on Python 3 in environments that use -- cgit v1.2.3