Skip to content

Commit abb5cec

Browse files
West v1.2.0
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 <[email protected]>
1 parent 28d0209 commit abb5cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/west/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This is the Python 3 version of option 3 in:
66
# https://packaging.python.org/guides/single-sourcing-package-version/#single-sourcing-the-version
77

8-
__version__ = '1.2.0a1'
8+
__version__ = '1.2.0'
99
#
1010
# MAINTAINERS:
1111
#

0 commit comments

Comments
 (0)