Skip to content

Commit 79fdef0

Browse files
committed
bump to 23.0.0
1 parent 3acd9fb commit 79fdef0

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

SECURITY.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,27 @@
44

55
**Please note that public Github issues are open for everyone to see!**
66

7-
If you believe you are found a problem in Gunicorn software, examples or documentation, we encourage you to send your report privately via [email](mailto:security@gunicorn.org?subject=Security%20issue%20in%20Gunicorn), or via Github using the *Report a vulnerability* button in the [Security](https://github.com/benoitc/gunicorn/security) section.
7+
If you believe you are found a problem in Gunicorn software, examples or documentation, we encourage you to send your
8+
report privately via [email](mailto:security@gunicorn.org?subject=Security%20issue%20in%20Gunicorn), or via Github
9+
using the *Report a vulnerability* button in the [Security](https://github.com/benoitc/gunicorn/security) section.
810

911
## Supported Releases
1012

1113
At this time, **only the latest release** receives any security attention whatsoever.
1214

15+
Please target reports against :white_check_mark: or current master. Please understand that :x: will
16+
not receive further security attention.
17+
1318
| Version | Status |
1419
| ------- | ------------------ |
15-
| latest release | :white_check_mark: |
20+
| 23.0.0 | :white_check_mark: |
21+
| 22.0.0 | :x: |
1622
| 21.2.0 | :x: |
1723
| 20.0.0 | :x: |
1824
| < 20.0 | :x: |
1925

2026
## Python Versions
2127

22-
Gunicorn runs on Python 3.7+, we *highly recommend* the latest release of a [supported series](https://devguide.python.org/versions/) and will not prioritize issues exclusively affecting in EoL environments.
28+
Gunicorn runs on Python 3.7+, we *highly recommend* the latest release of a
29+
[supported series](https://devguide.python.org/versions/) and will not prioritize issues exclusively
30+
affecting in EoL environments.

gunicorn/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file is part of gunicorn released under the MIT license.
44
# See the NOTICE for more information.
55

6-
version_info = (22, 0, 0)
6+
version_info = (23, 0, 0)
77
__version__ = ".".join([str(v) for v in version_info])
88
SERVER = "gunicorn"
99
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)

0 commit comments

Comments
 (0)