Skip to content

Commit 50b1196

Browse files
committed
Version 1.11.0 release
1 parent 27f6edd commit 50b1196

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Version history
22

33

4+
## Version 1.11.0
5+
6+
### Features
7+
8+
- Adds `python3.11` support and promise about `python3.12` support
9+
- Removes `pkg_resources` to use `packaging` instead
10+
11+
412
## Version 1.10.1
513

614
### Bugfixes

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
readme = f.read()
55

66
dependencies = [
7-
"pytest>=6.0.0",
7+
"pytest>=6.2.0",
88
"mypy>=0.970",
99
"decorator",
1010
"pyyaml",
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="pytest-mypy-plugins",
18-
version="1.10.1",
18+
version="1.11.0",
1919
description="pytest plugin for writing tests for mypy plugins",
2020
long_description=readme,
2121
long_description_content_type="text/markdown",
@@ -40,6 +40,7 @@
4040
"Programming Language :: Python :: 3.8",
4141
"Programming Language :: Python :: 3.9",
4242
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
4344
"Typing :: Typed",
4445
],
4546
)

0 commit comments

Comments
 (0)