From 52f66adcc1c9ede33a66383546415896b142318e Mon Sep 17 00:00:00 2001 From: Josh Bialkowski Date: Mon, 20 Apr 2020 15:45:08 -0700 Subject: [PATCH] release 0.6.10 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. --- cmake_format/__init__.py | 2 +- cmake_format/vscode_extension/package-lock.json | 2 +- cmake_format/vscode_extension/package.json | 2 +- tangent/tooling/github.py | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/cmake_format/__init__.py b/cmake_format/__init__.py index 47b1d3f..75f2ae5 100644 --- a/cmake_format/__init__.py +++ b/cmake_format/__init__.py @@ -3,4 +3,4 @@ """ from __future__ import unicode_literals -VERSION = '0.6.10.dev3' +VERSION = '0.6.10' diff --git a/cmake_format/vscode_extension/package-lock.json b/cmake_format/vscode_extension/package-lock.json index 0da6155..37f134d 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.10-dev3", + "version": "0.6.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/cmake_format/vscode_extension/package.json b/cmake_format/vscode_extension/package.json index 3135bc5..bd6bc44 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.10-dev3", + "version": "0.6.10", "publisher": "cheshirekow", "repository": "https://github.com/cheshirekow/cmake_format", "icon": "images/cmake-format-logo.png", diff --git a/tangent/tooling/github.py b/tangent/tooling/github.py index 02ee91f..ed6277e 100644 --- a/tangent/tooling/github.py +++ b/tangent/tooling/github.py @@ -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)