Skip to content

Commit

Permalink
Version 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Sep 11, 2022
1 parent 0cbe60f commit 25b14e5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
3.2.2 (Sep 11, 2022)
- #228, 235 Fix libev paths (Ian Swanson, Nicolas Damgaard Larsen)
- #234 Set ``wsgi.input_terminated`` (Nathan Hoad)
- Update PyPI description

3.2.1 (Feb 14, 2022)
- Fix release

Expand Down
2 changes: 1 addition & 1 deletion bjoern/_bjoernmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ PyMODINIT_FUNC INIT_BJOERN(void)
#endif

PyModule_AddObject(bjoern_module, "features", features);
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 3, 2, 1));
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 3, 2, 2));

#if PY_MAJOR_VERSION >= 3
return bjoern_module;
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import glob
from setuptools import setup, Extension

long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()

WANT_SIGINT_HANDLING = os.environ.get('BJOERN_WANT_SIGINT_HANDLING', True)
WANT_SIGNAL_HANDLING = os.environ.get('BJOERN_WANT_SIGNAL_HANDLING', True)
SIGNAL_CHECK_INTERVAL = os.environ.get('BJOERN_SIGNAL_CHECK_INTERVAL', '0.1')
Expand Down Expand Up @@ -46,7 +48,8 @@
license = '2-clause BSD',
url = 'https://github.com/jonashaag/bjoern',
description = 'A screamingly fast Python 2 + 3 WSGI server written in C.',
version = '3.2.1',
version = '3.2.2',
long_description = long_description,
classifiers = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: C',
Expand Down

0 comments on commit 25b14e5

Please sign in to comment.