@@ -108,57 +108,87 @@ decorators are extracted from the ast.
108108 -U -r requirements.txt`.
109109* Start developing.
110110* To run all tests with [ tox] ( https://tox.readthedocs.io/en/latest/ ) ,
111- Python 3.7, 3.8, 3.9 and 3.10 must be available. You might want to look
111+ Python 3.7, 3.8, 3.9, 3.10 and 3.11 must be available. You might want to look
112112 into using [ pyenv] ( https://github.com/pyenv/pyenv ) .
113113
114114
115115# Changelog
116116
117- ## Upcoming
117+ ## v0.1.0
118118
119- * Implement support for flexible matching of mypy error codes
119+ * Implement support for flexible matching of mypy error codes (towards [ #36 ] [ i36 ] , [ #41 ] [ p41 ] )
120+ * Add support for pytest 7.2.x ([ #42 ] [ p42 ] )
121+ * Add support for mypy 1.0.x ([ #42 ] [ p42 ] )
122+ * Add support for Python 3.11 ([ #42 ] [ p42 ] )
123+ * Drop support for pytest 6.x ([ #42 ] [ p42 ] )
124+ * Drop support for mypy versions less than 0.931 ([ #42 ] [ p42 ] )
120125
121126## v0.0.12
122127
123- * Allow Windows drives in filename (#17 , #34 )
124- * Support async def tests (#30 , #31 )
125- * Add support for mypy 0.971 (#27 )
126- * Remove support for Python 3.6 (#32 )
128+ * Allow Windows drives in filename ([ #17 ] [ i17 ] , [ #34 ] [ p34 ] )
129+ * Support async def tests ([ #30 ] [ i30 ] , [ #31 ] [ p31 ] )
130+ * Add support for mypy 0.971 ([ #35 ] [ i35 ] , [ #27 ] [ i27 ] )
131+ * Remove support for Python 3.6 ([ #32 ] [ p32 ] )
132+ * Bump development dependencies ([ #40 ] [ p40 ] )
127133
128134## v0.0.11
129135
130- * Add support for mypy 0.960 (#25 )
136+ * Add support for mypy 0.960 ([ #25 ] [ p25 ] )
131137
132138## v0.0.10
133139
134- * Add support for pytest 7.0.x and require Python >= 3.7 (#23 )
135- * Bump dependencies (#24 )
140+ * Add support for pytest 7.0.x and require Python >= 3.7 ([ #23 ] [ p23 ] )
141+ * Bump dependencies ([ #24 ] [ p24 ] )
136142
137143## v0.0.9
138144
139- * Disable soft error limit (#21 )
145+ * Disable soft error limit ([ #21 ] [ p21 ] )
140146
141147## v0.0.8
142148
143- * Normalize messages to enable support for mypy 0.902 and pytest 6.2.4 (#20 )
149+ * Normalize messages to enable support for mypy 0.902 and pytest 6.2.4 ([ #20 ] [ p20 ] )
144150
145151## v0.0.7
146152
147- * Fix ` PYTEST_VERSION_INFO ` - by [ @blueyed ] ( https://github.com/blueyed ) (# 8 )
148- * Always pass ` --check-untyped-defs ` to mypy (#11 )
149- * Respect pytest config ` python_files ` when identifying pytest test modules (#12 )
153+ * Fix ` PYTEST_VERSION_INFO ` - by [ @blueyed ] ( https://github.com/blueyed ) ([ # 8 ] [ p8 ] )
154+ * Always pass ` --check-untyped-defs ` to mypy ([ #11 ] [ p11 ] )
155+ * Respect pytest config ` python_files ` when identifying pytest test modules ([ #12 ] [ p12 ] )
150156
151157## v0.0.6 - add pytest 5.4 support
152158
153- * Update the plugin to work with pytest 5.4 (# 7 )
159+ * Update the plugin to work with pytest 5.4 ([ # 7 ] [ p7 ] )
154160
155161## v0.0.5 - CI improvements
156162
157- * Make invoke tasks work (partially) on Windows (# 6 )
163+ * Make invoke tasks work (partially) on Windows ([ # 6 ] [ p6 ] )
158164* Add an invoke task to run tox environments by selecting globs (e.g.,
159- ` inv tox -e py-* ` ) (# 6 )
165+ ` inv tox -e py-* ` ) ([ # 6 ] [ p6 ] )
160166* Use coverage directly for code coverage to get more consistent
161- parallel run results (# 6 )
167+ parallel run results ([ # 6 ] [ p6 ] )
162168* Use flit fork dflit to make packaging work with ` LICENSES ` directory
163- (#6 )
164- * Bump dependencies (#6 )
169+ ([ #6 ] [ p6 ] )
170+ * Bump dependencies ([ #6 ] [ p6 ] )
171+
172+
173+ [ i17 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/17
174+ [ i27 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/27
175+ [ i30 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/30
176+ [ i35 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/35
177+ [ i36 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/36
178+
179+ [ p6 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/6
180+ [ p7 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/7
181+ [ p8 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/8
182+ [ p11 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/11
183+ [ p12 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/12
184+ [ p20 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/20
185+ [ p21 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/21
186+ [ p23 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/23
187+ [ p24 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/24
188+ [ p25 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/25
189+ [ p31 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/31
190+ [ p32 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/32
191+ [ p34 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/34
192+ [ p40 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/40
193+ [ p41 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/41
194+ [ p42 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/42
0 commit comments