Skip to content

Commit 95b7ffe

Browse files
committed
chore: prepare release 25.0.2
- Bump version to 25.0.2 - Update copyright year to 2026 in LICENSE and NOTICE - Add license headers to all Python source files - Add changelog entry for 25.0.2
1 parent 026167a commit 95b7ffe

File tree

191 files changed

+801
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+801
-3
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2009-2024 (c) Benoît Chesneau <benoitc@gunicorn.org>
1+
2009-2026 (c) Benoît Chesneau <benoitc@gunicorn.org>
22
2009-2015 (c) Paul J. Davis <paul.joseph.davis@gmail.com>
33

44
Permission is hereby granted, free of charge, to any person

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gunicorn
22

3-
2009-2024 (c) Benoît Chesneau <benoitc@gunicorn.org>
3+
2009-2026 (c) Benoît Chesneau <benoitc@gunicorn.org>
44
2009-2015 (c) Paul J. Davis <paul.joseph.davis@gmail.com>
55

66
Gunicorn is released under the MIT license. See the LICENSE

benchmarks/run_benchmark.py

100755100644
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# This file is part of gunicorn released under the MIT license.
3+
# See the NOTICE for more information.
4+
15
#!/usr/bin/env python3
26
"""
37
Benchmark script for gunicorn gthread worker.

benchmarks/simple_app.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# This file is part of gunicorn released under the MIT license.
3+
# See the NOTICE for more information.
4+
15
# Simple WSGI app for benchmarking
26

37
def application(environ, start_response):

docs/content/2026-news.md

Lines changed: 27 additions & 0 deletions

docs/content/news.md

Lines changed: 27 additions & 0 deletions

docs/macros.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# This file is part of gunicorn released under the MIT license.
3+
# See the NOTICE for more information.
4+
15
from importlib import import_module
26

37
def define_env(env):

examples/alt_spec.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# This file is part of gunicorn released under the MIT license.
3+
# See the NOTICE for more information.
4+
15
#
26
# An example of how to pass information from the command line to
37
# a WSGI app. Only applies to the native WSGI workers used by

examples/bad.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# This file is part of gunicorn released under the MIT license.
3+
# See the NOTICE for more information.
4+
15
import tempfile
26
files = []
37
def app(environ, start_response):

examples/boot_fail.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# This file is part of gunicorn released under the MIT license.
3+
# See the NOTICE for more information.
4+
15
raise RuntimeError("Bad app!")
26

37
def app(environ, start_response):

0 commit comments

Comments
 (0)