Skip to content

Commit

Permalink
release 0.6.10
Browse files Browse the repository at this point in the history
This release fixes a number of issues with `cmake-lint` and activates
`cmake-lint` as part of the lint build step in CI for this project and
the upstream repository. There is still a lot of work to do on `cmake-lint`
but at this point it is in a less experimental state and I am sufficiently
confident in it enough to suggest that you start using it. Feel free to
report any issues you encounter with it.

This release also includes some cleanup work under the hood of `cmake-format`
and the parsing code. Most notably, the command specifications for all of the
cmake functions and macros defined in standard modules have been generated
using `genparsers` and are now included by default. I have not audited all
of them so the detected specifications are probably not all correct. Please
let me know if you observe any problems with them.
  • Loading branch information
cheshirekow committed Apr 21, 2020
1 parent 5db9c26 commit 52f66ad
Show file tree
Hide file tree
Showing 4 changed files with 5 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.10.dev3'
VERSION = '0.6.10'
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.10-dev3",
"version": "0.6.10",
"publisher": "cheshirekow",
"repository": "https://github.com/cheshirekow/cmake_format",
"icon": "images/cmake-format-logo.png",
Expand Down
2 changes: 2 additions & 0 deletions tangent/tooling/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,8 @@ def main():
tag = argdict.pop("tag")
if tag.startswith("pseudo-"):
argdict["branch"] = tag[len("pseudo-"):]
else:
argdict["tag"] = tag
sync_doc_artifacts(**argdict)
elif command == "push-release":
push_release(args.reposlug, args.tag, args.message, args.files)
Expand Down

0 comments on commit 52f66ad

Please sign in to comment.