Skip to content

Commit 4a98e17

Browse files
committed
release v0.6.9
The parser now performs token look-ahead when parsing a comment within a statement. This allows it to determine whether a comment belongs to the current semantic node or one higher up in the tree (previously it would assign all comments to the most recent semantic node). This should prevent some unusual indentation of comments within deep statements. Some ``cmake-lint`` crashes have been fixed and the test coverage has increased significantly. There are still some outstanding issues but it should crash less frequently and with more helpful information. Detailed documentation for configuration options is now generated automatically, including default value, command line syntax, and example configuration file entry.
1 parent 06b2581 commit 4a98e17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cmake_format/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"""
44
from __future__ import unicode_literals
55

6-
VERSION = '0.6.9.dev0'
6+
VERSION = '0.6.9'

cmake_format/vscode_extension/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmake_format/vscode_extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cmake-format",
33
"displayName": "cmake-format",
44
"description": "Format listfiles so they don't look like crap",
5-
"version": "0.6.9-dev0",
5+
"version": "0.6.9",
66
"publisher": "cheshirekow",
77
"repository": "https://github.com/cheshirekow/cmake_format",
88
"icon": "images/cmake-format-logo.png",

0 commit comments

Comments
 (0)