Skip to content

Commit

Permalink
Merge branch 'release/4.2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Jun 17, 2014
2 parents f578158 + 95c4ddf commit b286c1f
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release Notes
.. toctree::
:maxdepth: 2

version-4.2.3.rst
version-4.2.2.rst
version-4.2.1.rst
version-4.2.0.rst
Expand Down
21 changes: 21 additions & 0 deletions docs/release-notes/version-4.2.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
=============
Version 4.2.3
=============

Version 4.2.3 of mod_wsgi can be obtained from:

https://github.com/GrahamDumpleton/mod_wsgi/archive/4.2.3.tar.gz

Known Issues
------------

1. The makefiles for building mod_wsgi on Windows are currently broken and
need updating. As most new changes relate to mod_wsgi daemon mode, which is
not supported under Windows, you should keep using the last available
binary for version 3.X on Windows instead.

Bugs Fixed
----------

1. The feature for starting mod_wsgi express using the Django management
command ``runmodwsgi`` was broken by the 4.2.2 release.
3 changes: 2 additions & 1 deletion src/server/management/commands/runmodwsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ def handle(self, *args, **options):

options['url_aliases'] = url_aliases

options = mod_wsgi.server._cmd_setup_server(args, options)
options = mod_wsgi.server._cmd_setup_server(
'start-server', args, options)

executable = os.path.join(options['server_root'], 'apachectl')
name = executable.ljust(len(options['process_name']))
Expand Down
4 changes: 2 additions & 2 deletions src/server/wsgi_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

#define MOD_WSGI_MAJORVERSION_NUMBER 4
#define MOD_WSGI_MINORVERSION_NUMBER 2
#define MOD_WSGI_MICROVERSION_NUMBER 2
#define MOD_WSGI_VERSION_STRING "4.2.2"
#define MOD_WSGI_MICROVERSION_NUMBER 3
#define MOD_WSGI_VERSION_STRING "4.2.3"

/* ------------------------------------------------------------------------- */

Expand Down

0 comments on commit b286c1f

Please sign in to comment.