Skip to content

Commit

Permalink
release v0.6.9
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cheshirekow committed Feb 10, 2020
1 parent 06b2581 commit 4a98e17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.9.dev0'
VERSION = '0.6.9'
2 changes: 1 addition & 1 deletion cmake_format/vscode_extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.9-dev0",
"version": "0.6.9",
"publisher": "cheshirekow",
"repository": "https://github.com/cheshirekow/cmake_format",
"icon": "images/cmake-format-logo.png",
Expand Down

0 comments on commit 4a98e17

Please sign in to comment.