diff --git a/CHANGELOG b/CHANGELOG index 5da27a5..7b17a22 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/bjoern/_bjoernmodule.c b/bjoern/_bjoernmodule.c index 180d4b1..e5621f6 100644 --- a/bjoern/_bjoernmodule.c +++ b/bjoern/_bjoernmodule.c @@ -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; diff --git a/setup.py b/setup.py index 9a227fc..434ea3a 100644 --- a/setup.py +++ b/setup.py @@ -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') @@ -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',