diff --git a/README.markdown b/README.markdown index ec5cd61..d032996 100644 --- a/README.markdown +++ b/README.markdown @@ -67,7 +67,7 @@ This module is already production ready and is powering [the Taobao LineZing sit Version ======= -This document describes ngx_drizzle [v0.1.6](https://github.com/chaoslawful/drizzle-nginx-module/tags) released on 2 September 2013. +This document describes ngx_drizzle [v0.1.7](https://github.com/chaoslawful/drizzle-nginx-module/tags) released on 19 December 2013. Synopsis ======== @@ -697,12 +697,12 @@ Alternatively, you can compile this module with Nginx core's source by hand: ``` You can fix this by pointing `python` to `python2`. * Download the latest version of the release tarball of this module from drizzle-nginx-module [file list](http://github.com/chaoslawful/drizzle-nginx-module/tags). -* Grab the nginx source code from [nginx.org](http://nginx.org/), for example, the version 1.4.2 (see [nginx compatibility](#compatibility)), and then build the source with this module: +* Grab the nginx source code from [nginx.org](http://nginx.org/), for example, the version 1.4.4 (see [nginx compatibility](#compatibility)), and then build the source with this module: ```bash - wget 'http://nginx.org/download/nginx-1.4.2.tar.gz' - tar -xzvf nginx-1.4.2.tar.gz - cd nginx-1.4.2/ + wget 'http://nginx.org/download/nginx-1.4.4.tar.gz' + tar -xzvf nginx-1.4.4.tar.gz + cd nginx-1.4.4/ # if you have installed libdrizzle to the prefix /opt/drizzle, then # specify the following environments: @@ -731,7 +731,7 @@ This module has been tested on Linux and Mac OS X. Reports on other POSIX-compli The following versions of Nginx should work with this module: * 1.5.x (last tested: 1.5.4) -* 1.4.x (last tested: 1.4.2) +* 1.4.x (last tested: 1.4.4) * 1.3.x (last tested: 1.3.7) * 1.2.x (last tested: 1.2.9) * 1.1.x (last tested: 1.1.5) diff --git a/doc/HttpDrizzleModule.wiki b/doc/HttpDrizzleModule.wiki index 05b3d4b..2c25cc4 100644 --- a/doc/HttpDrizzleModule.wiki +++ b/doc/HttpDrizzleModule.wiki @@ -10,7 +10,7 @@ This module is already production ready and is powering [http://lz.taobao.com th = Version = -This document describes ngx_drizzle [https://github.com/chaoslawful/drizzle-nginx-module/tags v0.1.6] released on 2 September 2013. +This document describes ngx_drizzle [https://github.com/chaoslawful/drizzle-nginx-module/tags v0.1.7] released on 19 December 2013. = Synopsis = @@ -545,11 +545,11 @@ Alternatively, you can compile this module with Nginx core's source by hand: : You can fix this by pointing python to python2. * Download the latest version of the release tarball of this module from drizzle-nginx-module [http://github.com/chaoslawful/drizzle-nginx-module/tags file list]. -* Grab the nginx source code from [http://nginx.org/ nginx.org], for example, the version 1.4.2 (see [[#Compatibility|nginx compatibility]]), and then build the source with this module: +* Grab the nginx source code from [http://nginx.org/ nginx.org], for example, the version 1.4.4 (see [[#Compatibility|nginx compatibility]]), and then build the source with this module: - wget 'http://nginx.org/download/nginx-1.4.2.tar.gz' - tar -xzvf nginx-1.4.2.tar.gz - cd nginx-1.4.2/ + wget 'http://nginx.org/download/nginx-1.4.4.tar.gz' + tar -xzvf nginx-1.4.4.tar.gz + cd nginx-1.4.4/ # if you have installed libdrizzle to the prefix /opt/drizzle, then # specify the following environments: @@ -575,7 +575,7 @@ This module has been tested on Linux and Mac OS X. Reports on other POSIX-compli The following versions of Nginx should work with this module: * 1.5.x (last tested: 1.5.4) -* 1.4.x (last tested: 1.4.2) +* 1.4.x (last tested: 1.4.4) * 1.3.x (last tested: 1.3.7) * 1.2.x (last tested: 1.2.9) * 1.1.x (last tested: 1.1.5) diff --git a/src/ngx_http_drizzle_module.h b/src/ngx_http_drizzle_module.h index ecafa7b..1d24bd6 100644 --- a/src/ngx_http_drizzle_module.h +++ b/src/ngx_http_drizzle_module.h @@ -35,9 +35,9 @@ #define NGX_HTTP_GONE 410 #endif -#define ngx_http_drizzle_module_version 15 +#define ngx_http_drizzle_module_version 1007 #define ngx_http_drizzle_module_version_string \ - "0.0.15" + "0.1.7" extern ngx_module_t ngx_http_drizzle_module;