From 4a98e170016f2666ff9c49b919417e5e57bf0e3e Mon Sep 17 00:00:00 2001 From: Josh Bialkowski Date: Mon, 10 Feb 2020 07:35:37 -0800 Subject: [PATCH] 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. --- cmake_format/__init__.py | 2 +- cmake_format/vscode_extension/package-lock.json | 2 +- cmake_format/vscode_extension/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake_format/__init__.py b/cmake_format/__init__.py index 04723be..3fca0f7 100644 --- a/cmake_format/__init__.py +++ b/cmake_format/__init__.py @@ -3,4 +3,4 @@ """ from __future__ import unicode_literals -VERSION = '0.6.9.dev0' +VERSION = '0.6.9' diff --git a/cmake_format/vscode_extension/package-lock.json b/cmake_format/vscode_extension/package-lock.json index 787f21e..b3bf0db 100644 --- a/cmake_format/vscode_extension/package-lock.json +++ b/cmake_format/vscode_extension/package-lock.json @@ -1,6 +1,6 @@ { "name": "cmake-format", - "version": "0.6.9-dev0", + "version": "0.6.9", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/cmake_format/vscode_extension/package.json b/cmake_format/vscode_extension/package.json index 743a01e..d0058f0 100644 --- a/cmake_format/vscode_extension/package.json +++ b/cmake_format/vscode_extension/package.json @@ -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",