Skip to content

Commit

Permalink
bump version 23.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pajod committed Nov 26, 2024
1 parent d295979 commit 3452c4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gunicorn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.

version_info = (23, 0, 0)
__version__ = ".".join([str(v) for v in version_info])
version_info = (23, 1, 0)
__version__ = ".".join([str(v) for v in version_info]) + "a1"
SERVER = "gunicorn"
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)

0 comments on commit 3452c4e

Please sign in to comment.