Skip to content

bumped the API version to 0.10.19. #1824

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ Version
=======

This document describes ngx_lua
[v0.10.17](https://github.com/openresty/lua-nginx-module/tags), which was released
on 3 July, 2020.
[v0.10.19](https://github.com/openresty/lua-nginx-module/tags), which was released
on 3 Nov, 2020.

Synopsis
========
Expand Down Expand Up @@ -284,6 +284,7 @@ Nginx Compatibility

The latest version of this module is compatible with the following versions of Nginx:

* 1.19.x (last tested: 1.19.3)
* 1.17.x (last tested: 1.17.8)
* 1.15.x (last tested: 1.15.8)
* 1.14.x
Expand Down Expand Up @@ -328,9 +329,9 @@ Build the source with this module:

```bash

wget 'https://openresty.org/download/nginx-1.17.8.tar.gz'
tar -xzvf nginx-1.17.8.tar.gz
cd nginx-1.17.8/
wget 'https://openresty.org/download/nginx-1.19.3.tar.gz'
tar -xzvf nginx-1.19.3.tar.gz
cd nginx-1.19.3/

# tell nginx's build system where to find LuaJIT 2.0:
export LUAJIT_LIB=/path/to/luajit/lib
Expand Down
11 changes: 6 additions & 5 deletions doc/HttpLuaModule.wiki
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Production ready.
= Version =

This document describes ngx_lua
[https://github.com/openresty/lua-nginx-module/tags v0.10.17], which was released
on 3 July, 2020.
[https://github.com/openresty/lua-nginx-module/tags v0.10.19], which was released
on 3 Nov, 2020.

= Synopsis =
<geshi lang="nginx">
Expand Down Expand Up @@ -221,6 +221,7 @@ performance level.

The latest version of this module is compatible with the following versions of Nginx:

* 1.19.x (last tested: 1.19.3)
* 1.17.x (last tested: 1.17.8)
* 1.15.x (last tested: 1.15.8)
* 1.14.x
Expand Down Expand Up @@ -262,9 +263,9 @@ Alternatively, ngx_lua can be manually compiled into Nginx:
Build the source with this module:

<geshi lang="bash">
wget 'https://openresty.org/download/nginx-1.17.8.tar.gz'
tar -xzvf nginx-1.17.8.tar.gz
cd nginx-1.17.8/
wget 'https://openresty.org/download/nginx-1.19.3.tar.gz'
tar -xzvf nginx-1.19.3.tar.gz
cd nginx-1.19.3/

# tell nginx's build system where to find LuaJIT 2.0:
export LUAJIT_LIB=/path/to/luajit/lib
Expand Down
2 changes: 1 addition & 1 deletion src/api/ngx_http_lua_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/* Public API for other Nginx modules */


#define ngx_http_lua_version 10018
#define ngx_http_lua_version 10019


typedef struct {
Expand Down