Skip to content

Commit 5369517

Browse files
committed
Bump the trunk major version to 13
and clear the release notes.
1 parent 8e464dd commit 5369517

File tree

22 files changed

+64
-459
lines changed

22 files changed

+64
-459
lines changed

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 7 additions & 133 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
====================================================
2-
Extra Clang Tools 12.0.0 (In-Progress) Release Notes
2+
Extra Clang Tools 13.0.0 (In-Progress) Release Notes
33
====================================================
44

55
.. contents::
@@ -10,15 +10,15 @@ Written by the `LLVM Team <https://llvm.org/>`_
1010

1111
.. warning::
1212

13-
These are in-progress notes for the upcoming Extra Clang Tools 12 release.
13+
These are in-progress notes for the upcoming Extra Clang Tools 13 release.
1414
Release notes for previous releases can be found on
1515
`the Download Page <https://releases.llvm.org/download.html>`_.
1616

1717
Introduction
1818
============
1919

2020
This document contains the release notes for the Extra Clang Tools, part of the
21-
Clang release 12.0.0. Here we describe the status of the Extra Clang Tools in
21+
Clang release 13.0.0. Here we describe the status of the Extra Clang Tools in
2222
some detail, including major improvements from the previous release and new
2323
feature work. All LLVM releases may be downloaded from the `LLVM releases web
2424
site <https://llvm.org/releases/>`_.
@@ -32,7 +32,7 @@ main Clang web page, this document applies to the *next* release, not
3232
the current one. To see the release notes for a specific release, please
3333
see the `releases page <https://llvm.org/releases/>`_.
3434

35-
What's New in Extra Clang Tools 12.0.0?
35+
What's New in Extra Clang Tools 13.0.0?
3636
=======================================
3737

3838
Some of the major new features and improvements to Extra Clang Tools are listed
@@ -47,17 +47,7 @@ Major New Features
4747
Improvements to clangd
4848
----------------------
4949

50-
- clangd's memory usage is significantly reduced on most Linux systems.
51-
In particular, memory usage should not increase dramatically over time.
52-
53-
The standard allocator on most systems is glibc's ptmalloc2, and it creates
54-
disproportionately large heaps when handling clangd's allocation patterns.
55-
By default, clangd will now periodically call ``malloc_trim`` to release free
56-
pages on glibc systems.
57-
58-
Users of other allocators (such as ``jemalloc`` or ``tcmalloc``) on glibc
59-
systems can disable this using ``--malloc_trim=0`` or the CMake flag
60-
``-DCLANGD_MALLOC_TRIM=0``.
50+
The improvements are...
6151

6252
Improvements to clang-doc
6353
-------------------------
@@ -67,7 +57,7 @@ The improvements are...
6757
Improvements to clang-query
6858
---------------------------
6959

70-
- The IgnoreImplicitCastsAndParentheses traversal mode has been removed.
60+
The improvements are...
7161

7262
Improvements to clang-rename
7363
----------------------------
@@ -77,123 +67,7 @@ The improvements are...
7767
Improvements to clang-tidy
7868
--------------------------
7969

80-
- Checks that allow configuring names of headers to include now support wrapping
81-
the include in angle brackets to create a system include. For example,
82-
:doc:`cppcoreguidelines-init-variables
83-
<clang-tidy/checks/cppcoreguidelines-init-variables>` and
84-
:doc:`modernize-make-unique <clang-tidy/checks/modernize-make-unique>`.
85-
86-
- CheckOptions that take boolean values now support all spellings supported in
87-
the `YAML format <https://yaml.org/type/bool.html>`_.
88-
89-
New modules
90-
^^^^^^^^^^^
91-
92-
- New ``altera`` module.
93-
94-
Includes checks related to OpenCL for FPGA coding guidelines, based on the
95-
`Altera SDK for OpenCL: Best Practices Guide
96-
<https://www.altera.com/en_US/pdfs/literature/hb/opencl-sdk/aocl_optimization_guide.pdf>`_.
97-
98-
- New ``concurrency`` module.
99-
100-
Includes checks related to concurrent programming (e.g. threads, fibers,
101-
coroutines, etc.).
102-
103-
New checks
104-
^^^^^^^^^^
105-
106-
- New :doc:`altera-kernel-name-restriction
107-
<clang-tidy/checks/altera-kernel-name-restriction>` check.
108-
109-
Finds kernel files and include directives whose filename is `kernel.cl`,
110-
`Verilog.cl`, or `VHDL.cl`.
111-
112-
- New :doc:`altera-single-work-item-barrier
113-
<clang-tidy/checks/altera-single-work-item-barrier>` check.
114-
115-
Finds OpenCL kernel functions that call a barrier function but do not call
116-
an ID function.
117-
118-
- New :doc:`altera-struct-pack-align
119-
<clang-tidy/checks/altera-struct-pack-align>` check.
120-
121-
Finds structs that are inefficiently packed or aligned, and recommends
122-
packing and/or aligning of said structs as needed.
123-
124-
- New :doc:`cppcoreguidelines-prefer-member-initializer
125-
<clang-tidy/checks/cppcoreguidelines-prefer-member-initializer>` check.
126-
127-
Finds member initializations in the constructor body which can be placed into
128-
the initialization list instead.
129-
130-
- New :doc:`bugprone-misplaced-pointer-arithmetic-in-alloc
131-
<clang-tidy/checks/bugprone-misplaced-pointer-arithmetic-in-alloc>` check.
132-
133-
- New :doc:`bugprone-redundant-branch-condition
134-
<clang-tidy/checks/bugprone-redundant-branch-condition>` check.
135-
136-
Finds condition variables in nested ``if`` statements that were also checked
137-
in the outer ``if`` statement and were not changed.
138-
139-
- New :doc:`concurrency-mt-unsafe <clang-tidy/checks/concurrency-mt-unsafe>`
140-
check.
141-
142-
Finds thread-unsafe functions usage. Currently knows about POSIX and
143-
Glibc function sets.
144-
145-
- New :doc:`bugprone-signal-handler
146-
<clang-tidy/checks/bugprone-signal-handler>` check.
147-
148-
Finds functions registered as signal handlers that call non asynchronous-safe
149-
functions.
150-
151-
- New :doc:`cert-sig30-c
152-
<clang-tidy/checks/cert-sig30-c>` check.
153-
154-
Alias to the :doc:`bugprone-signal-handler
155-
<clang-tidy/checks/bugprone-signal-handler>` check.
156-
157-
- New :doc:`performance-no-int-to-ptr
158-
<clang-tidy/checks/performance-no-int-to-ptr>` check.
159-
160-
Diagnoses every integer to pointer cast.
161-
162-
- New :doc:`readability-function-cognitive-complexity
163-
<clang-tidy/checks/readability-function-cognitive-complexity>` check.
164-
165-
Flags functions with Cognitive Complexity metric exceeding the configured limit.
166-
167-
Changes in existing checks
168-
^^^^^^^^^^^^^^^^^^^^^^^^^^
169-
170-
- Improved :doc:`modernize-loop-convert
171-
<clang-tidy/checks/modernize-loop-convert>` check.
172-
173-
Now able to transform iterator loops using ``rbegin`` and ``rend`` methods.
174-
175-
- Improved :doc:`readability-identifier-naming
176-
<clang-tidy/checks/readability-identifier-naming>` check.
177-
178-
Added an option `GetConfigPerFile` to support including files which use
179-
different naming styles.
180-
181-
Now renames overridden virtual methods if the method they override has a
182-
style violation.
183-
184-
Added support for specifying the style of scoped ``enum`` constants. If
185-
unspecified, will fall back to the style for regular ``enum`` constants.
186-
187-
Added an option `IgnoredRegexp` per identifier type to suppress identifier
188-
naming checks for names matching a regular expression.
189-
190-
- Removed `google-runtime-references` check because the rule it checks does
191-
not exist in the Google Style Guide anymore.
192-
193-
- Improved :doc:`readability-redundant-string-init
194-
<clang-tidy/checks/readability-redundant-string-init>` check.
195-
196-
Added `std::basic_string_view` to default list of ``string``-like types.
70+
The improvements are...
19771

19872
Improvements to include-fixer
19973
-----------------------------

clang-tools-extra/docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@
4949
# built documents.
5050
#
5151
# The short version.
52-
version = '12'
52+
version = '13'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '12'
54+
release = '13'
5555

5656
# The language for content autogenerated by Sphinx. Refer to documentation
5757
# for a list of supported languages.

0 commit comments

Comments
 (0)