Skip to content

Commit

Permalink
Version 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Nov 20, 2017
1 parent b7cf344 commit 430aa67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
@@ -1,3 +1,6 @@
2.0.3 (Nov 20, 2017)
- Fix segfault with HTTP header

2.0.2 (Nov 19, 2017)
- Fix segfault with large HTTP header
- Fix Python 3 unicode header handling
Expand Down
4 changes: 2 additions & 2 deletions bjoern/_bjoernmodule.c
Expand Up @@ -79,11 +79,11 @@ PyMODINIT_FUNC INIT_BJOERN(void)
return NULL;
}

PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 2, 0, 2));
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 2, 0, 3));
return bjoern_module;
#else
PyObject* bjoern_module = Py_InitModule("_bjoern", Bjoern_FunctionTable);
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 2, 0, 2));
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 2, 0, 3));
#endif

}
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -24,7 +24,7 @@
license = '2-clause BSD',
url = 'https://github.com/jonashaag/bjoern',
description = 'A screamingly fast Python 2 + 3 WSGI server written in C.',
version = '2.0.2',
version = '2.0.3',
classifiers = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: C',
Expand Down

0 comments on commit 430aa67

Please sign in to comment.