Skip to content

Commit a914298

Browse files
committed
title case for headings
1 parent 9ab9840 commit a914298

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Mypy Release Notes
22

3-
## Next release
3+
## Next Release
44

55
...
66

7-
## Mypy 1.15 (unreleased)
7+
## Mypy 1.15 (Unreleased)
88

99
We’ve just uploaded mypy 1.15 to the Python Package Index ([PyPI](https://pypi.org/project/mypy/)).
1010
Mypy is a static type checker for Python. This release includes new features and bug fixes.
@@ -14,14 +14,14 @@ You can install it as follows:
1414

1515
You can read the full documentation for this release on [Read the Docs](http://mypy.readthedocs.io).
1616

17-
### Performance improvements
17+
### Performance Improvements
1818

1919
Mypy may be 5-30% faster. This improvement comes largely from tuning the performance of the
2020
garbage collector.
2121

2222
Contributed by Jukka Lehtosalo (PR [18306](https://github.com/python/mypy/pull/18306)).
2323

24-
### Mypyc accelerated mypy wheels for aarch64
24+
### Mypyc Accelerated Mypy Wheels for `aarch64`
2525

2626
Mypy can compile itself to C extension modules using mypyc. This makes mypy 3-5x faster
2727
than if mypy is interpreted with pure Python. We now build and upload mypyc accelerated
@@ -41,7 +41,7 @@ Use this flag to disable this behavior. `--strict-bytes` will be enabled by defa
4141
Contributed by Ali Hamdan (PR [18263](https://github.com/python/mypy/pull/18263)) and
4242
Shantanu Jain (PR [13952](https://github.com/python/mypy/pull/13952)).
4343

44-
### Improvements to reachability analysis and partial type handling in loops
44+
### Improvements to Reachability Analysis and Partial Type Handling in Loops
4545

4646
This change results in mypy better modelling control flow within loops and hence detecting several
4747
issues it previously did not detect. In some cases, this change may require use of an additional
@@ -53,7 +53,7 @@ PR [18433](https://github.com/python/mypy/pull/18433)).
5353
(Speaking of partial types, another reminder that mypy plans on enabling `--local-partial-types`
5454
by default in **mypy 2.0**).
5555

56-
### Better discovery of configuration files
56+
### Better Discovery of Configuration Files
5757

5858
Mypy will now walk up the filesystem (up until a repository or file system root) to discover
5959
configuration files. See the
@@ -63,7 +63,7 @@ for more details.
6363
Contributed by Mikhail Shiryaev and Shantanu Jain
6464
(PR [16965](https://github.com/python/mypy/pull/16965), PR [18482](https://github.com/python/mypy/pull/18482))
6565

66-
### Better line numbers for decorators and slice expressions
66+
### Better Line Numbers for Decorators and Slice Expressions
6767

6868
Mypy now uses more correct line numbers for decorators and slice expressions. In some cases, this
6969
may necessitate changing the location of a `# type: ignore` comment.

0 commit comments

Comments
 (0)