Skip to content

Commit

Permalink
release 0.6.12
Browse files Browse the repository at this point in the history
This release includes mostly internal housekeeping. The code organization was
overhauled to better represent the division between different components.
The `cmake_format` package has been replaced by `cmakelang`, with
`format` now a subpackage. All the first class tools are now subpackages
of `cmakelang`. For now, I'll leave the github repository at `cmake_format`
but there's a good chance I'll move it to `cmakelang` in the future. Big
refactors like this have a tendency to expose gaps in coverage so please
report any breakages you observe.

In addition, the configuration now includes options for using tab characters
in listfiles (though, I'm not sure who in the right mind would choose to do
so). If enabled, the formatter will translate indentations from spaces to tabs,
and the linter will inforce a consistent tab policy.

This release also includes a couple of minor bug fixes. See the release notes
for more details.
  • Loading branch information
cheshirekow committed Aug 19, 2020
1 parent 0b2f636 commit a11d9df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmakelang/__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.12.dev0"
__version__ = "0.6.12"
2 changes: 1 addition & 1 deletion cmakelang/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 cmakelang/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.12-dev0",
"version": "0.6.12",
"publisher": "cheshirekow",
"repository": "https://github.com/cheshirekow/cmakelang",
"icon": "images/cmake-format-logo.png",
Expand Down

0 comments on commit a11d9df

Please sign in to comment.