Skip to content

Commit

Permalink
release 0.6.11
Browse files Browse the repository at this point in the history
This release adds `argcomplete` handling to enable automatic shell
completion to `cmake-format` and `cmake-lint`. `argcomplete` is not an
installation dependency so if you wish to enable completion please install
`argcomplete` (e.g. via pip) and then activate it (see the documentation for
argcomplete).

The visual studio code extension now supports variable substitution for things
like `${workspaceRoot}` and `${workspaceFolder}` in the `args` and `cwd`
configuration options.

There is a new configuration option to `disable` formatting. This can be
specified in a config file to conveniently no-op formatting within a
subdirectory (such as third-party source code) of a project.
  • Loading branch information
cheshirekow committed Jul 29, 2020
1 parent 9fd3c1f commit aad4a65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake_format/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""
from __future__ import unicode_literals

VERSION = '0.6.11.dev1'
VERSION = '0.6.11'
2 changes: 1 addition & 1 deletion cmake_format/vscode_extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cmake-format",
"displayName": "cmake-format",
"description": "Format listfiles so they don't look like crap",
"version": "0.6.11-dev1",
"version": "0.6.11",
"publisher": "cheshirekow",
"repository": "https://github.com/cheshirekow/cmake_format",
"icon": "images/cmake-format-logo.png",
Expand Down

0 comments on commit aad4a65

Please sign in to comment.