diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-05-07 14:25:04 +0000 |
---|---|---|
committer | Jonathan Kolb <jon@b0g.us> | 2007-05-07 14:25:04 +0000 |
commit | d7127be32835b36710aee355677f37777046bd13 (patch) | |
tree | eb71aaba12c4153e41b2aaf67fc4240cea4f22df /src/http/modules/perl/nginx.pm | |
parent | 9b4b08199402bb1b2a276b9b36227598140c33af (diff) | |
download | nginx-0.5.20.tar.gz |
Changes with nginx 0.5.20 07 May 2007v0.5.20
*) Feature: the "sendfile_max_chunk" directive.
*) Feature: the "$http_...", "$sent_http_...", and "$upstream_http_..."
variables may be changed using the "set" directive.
*) Bugfix: a segmentation fault might occur in worker process if the
SSI command 'if expr="$var = /"' was used.
*) Bugfix: trailing boundary of multipart range response was
transferred incorrectly.
Thanks to Evan Miller.
*) Bugfix: nginx did not work on Solaris/sparc64 if it was built by Sun
Studio.
Thanks to Andrei Nigmatulin.
*) Bugfix: the ngx_http_perl_module could not built by Solaris make.
Thanks to Andrei Nigmatulin.
Diffstat (limited to 'src/http/modules/perl/nginx.pm')
-rw-r--r-- | src/http/modules/perl/nginx.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/perl/nginx.pm b/src/http/modules/perl/nginx.pm index 3319c3fc5..d6f47c078 100644 --- a/src/http/modules/perl/nginx.pm +++ b/src/http/modules/perl/nginx.pm @@ -47,7 +47,7 @@ our @EXPORT = qw( HTTP_INSUFFICIENT_STORAGE ); -our $VERSION = '0.5.19'; +our $VERSION = '0.5.20'; require XSLoader; XSLoader::load('nginx', $VERSION); |