Skip to content

Commit

Permalink
Version 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Apr 11, 2016
1 parent 98ab7af commit bea0aa4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.4.3 (Apr 2016)
- Fix #88: Infinite loop due to misuse of POSIX API

1.4.2 (Jan 2015)
- CVE-2015-0219, see https://www.djangoproject.com/weblog/2015/jan/13/security/

Expand Down
2 changes: 1 addition & 1 deletion bjoern/_bjoernmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ PyMODINIT_FUNC init_bjoern(void)
assert(StartResponse_Type.tp_flags & Py_TPFLAGS_READY);

PyObject* bjoern_module = Py_InitModule("_bjoern", Bjoern_FunctionTable);
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 1, 4, 2));
PyModule_AddObject(bjoern_module, "version", Py_BuildValue("(iii)", 1, 4, 3));
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
license = '2-clause BSD',
url = 'https://github.com/jonashaag/bjoern',
description = 'A screamingly fast Python WSGI server written in C.',
version = '1.4.2',
version = '1.4.3',
classifiers = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: C',
Expand Down

0 comments on commit bea0aa4

Please sign in to comment.