From abb5cec3f52926c288bbab338a35b90b8a79a568 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Fri, 6 Oct 2023 16:51:48 -0700 Subject: [PATCH] West v1.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Major changes: - New 'west grep' command for running a "grep tool" in your west workspace's repositories. Currently, 'git grep', `ripgrep`, and standard 'grep' are supported grep tools. To run this command to get 'git grep foo' results from all cloned, active repositories, run: west grep foo For more details, run 'west help grep'. Other changes: - The manifest file format now supports a 'description' field in each 'projects:' element. - 'west list --format' now accepts '{description}' in the format string, which prints the project's 'description:' value. - 'west compare' now always prints information about the manifest-rev branch Bug fixes: - 'west init' aborts if the destination directory already exists. API changes: - 'west.commands.WestCommand' methods 'check_call()' and 'check_output()' now take any kwargs that can be passed on to the underlying subprocess function. - 'west.commands.WestCommand.run_subprocess()': new wrapper around 'subprocess.run()'. This could not be named 'run()' because 'WestCommand' already had a method by this name. - 'west.commands.WestCommand' methods 'dbg()', 'inf()', 'wrn()', and 'err()' now all take an 'end' kwarg, which is passed on to the call to 'print()'. - 'west.manifest.Project' now has a 'description' attribute, which contains the parsed value of the 'description:' field in the manifest data. Signed-off-by: Martí Bolívar --- src/west/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/west/version.py b/src/west/version.py index 5900c082..63e16651 100644 --- a/src/west/version.py +++ b/src/west/version.py @@ -5,7 +5,7 @@ # This is the Python 3 version of option 3 in: # https://packaging.python.org/guides/single-sourcing-package-version/#single-sourcing-the-version -__version__ = '1.2.0a1' +__version__ = '1.2.0' # # MAINTAINERS: #