[PATCH] D72527: [clang-tidy] adjust scripts to subsubsections in Release Notes
Nathan James via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jan 28 10:12:11 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG66e47a57205b: [clang-tidy] adjust scripts to subsubsections in Release Notes (authored by njames93).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D72527/new/
https://reviews.llvm.org/D72527
Files:
clang-tools-extra/clang-tidy/add_new_check.py
clang-tools-extra/clang-tidy/rename_check.py
clang-tools-extra/docs/ReleaseNotes.rst
Index: clang-tools-extra/docs/ReleaseNotes.rst
===================================================================
--- clang-tools-extra/docs/ReleaseNotes.rst
+++ clang-tools-extra/docs/ReleaseNotes.rst
@@ -88,8 +88,8 @@
Flags use of the `C` standard library functions ``memset``, ``memcpy`` and
``memcmp`` and similar derivatives on non-trivial types.
-New aliases
-^^^^^^^^^^^
+New check aliases
+^^^^^^^^^^^^^^^^^
- New alias :doc:`cert-dcl37-c
<clang-tidy/checks/cert-dcl37-c>` to
Index: clang-tools-extra/clang-tidy/rename_check.py
===================================================================
--- clang-tools-extra/clang-tidy/rename_check.py
+++ clang-tools-extra/clang-tidy/rename_check.py
@@ -176,11 +176,11 @@
for line in lines:
if not note_added:
- match = re.search('Improvements to clang-tidy', line)
+ match = re.search('Renamed checks', line)
if match:
header_found = True
elif header_found:
- if not line.startswith('----'):
+ if not line.startswith('^^^^'):
f.write("""
- The '%s' check was renamed to :doc:`%s
<clang-tidy/checks/%s>`
Index: clang-tools-extra/clang-tidy/add_new_check.py
===================================================================
--- clang-tools-extra/clang-tidy/add_new_check.py
+++ clang-tools-extra/clang-tidy/add_new_check.py
@@ -219,8 +219,8 @@
with open(filename, 'r') as f:
lines = f.readlines()
- lineMatcher = re.compile('Improvements to clang-tidy')
- nextSectionMatcher = re.compile('Improvements to clang-include-fixer')
+ lineMatcher = re.compile('New checks')
+ nextSectionMatcher = re.compile('New check aliases')
checkerMatcher = re.compile('- New :doc:`(.*)')
print('Updating %s...' % filename)
@@ -249,12 +249,12 @@
f.write(line)
continue
- if line.startswith('----'):
+ if line.startswith('^^^^'):
f.write(line)
continue
if header_found and add_note_here:
- if not line.startswith('----'):
+ if not line.startswith('^^^^'):
f.write("""- New :doc:`%s
<clang-tidy/checks/%s>` check.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D72527.240928.patch
Type: text/x-patch
Size: 2183 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200128/823bceff/attachment.bin>
More information about the cfe-commits
mailing list