Skip to content

Commit d457db6

Browse files
committed
bump version to v0.2.6
1 parent 663e468 commit d457db6

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

Changes.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
### v0.2.5 2016.11.26
1+
### v0.2.6 2016.11.26
22

3-
- 升级内部集成的lua-resty-session
4-
- 升级到2.13版本
5-
- 给内置的session中间件添加新的update方法用于更新cookie过期时间
3+
- 升级内部集成的session中间件
4+
- lua-resty-session升级到2.13版本
5+
- 添加一个session过期参数timeout,默认为3600秒
6+
- 添加一个refresh_cookie参数,用于控制否在有新请求时刷新session和cookie过期时间,默认“是”
67
- 更新`lord new`项目模板
78
- 缓存`app`对象,提高性能
8-
- 调整CRUD示例
9+
- 调整CRUD示例, 详细请参看脚手架代码中的app/routes/user.lua
10+
- 删除默认响应头X-Powered-By
911

1012
### v0.2.4 2016.11.16
1113

README_zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
- 全站示例项目[openresty-china](https://github.com/sumory/openresty-china)
1616

1717

18-
当前版本:v0.2.5
18+
当前版本:v0.2.6
1919

2020

2121
### 文档

dist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name = lor
22
abstract = A fast and minimalist web framework based on OpenResty.
3-
version = 0.2.5
3+
version = 0.2.6
44
author = Sumory Wu (@sumory)
55
is_original = yes
66
license = mit
77
repo_link = https://github.com/sumory/lor
88
main_module = lib/lor/index.lua
99
exclude_files = .travis, docker, docs, .travis.yml
10-
requires = bungle/lua-resty-session >= 2.10, bungle/lua-resty-template >= 1.9, p0pr0ck5/lua-resty-cookie >= 0.01
10+
requires = bungle/lua-resty-session >= 2.13, bungle/lua-resty-template >= 1.9, p0pr0ck5/lua-resty-cookie >= 0.01

install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ echo "install lor package to $PACKAGE_PATH"
3838
mkdir -p ./lor
3939
cp -a ./lib/lor/* ./lor/
4040
cp -a ./* $PACKAGE_PATH/
41+
rm -rf $PACKAGE_PATH/lib
4142
rm -rf ./lor
4243

4344
echo "lor framework installed."

lib/lor/version.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
return "0.2.5"
1+
return "0.2.6"

0 commit comments

Comments
 (0)