Skip to content

Commit 4ea2545

Browse files
committed
Added the new version "0.2.0" and CHANGELOG
1 parent 97f50cc commit 4ea2545

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
## 0.2.0
4+
`2021-6-5`
5+
6+
> 此版本使用了 `github.com/mattn/go-sqlite3` 这个sqlite3的CGO库。Golang在用CGO的情况下就不能交叉编译了,因此需要在对应的平台进行编辑,比如要在Linux系统上运行此应用,则需要在对应的Linux系统上安装Golang来编译。
7+
8+
* 添加本地用户登录认证
9+
* 添加本地用户管理功能,用户的增、删、改、查
10+
* 添加用户列表分页功能
11+
* 添加用户绑定IP功能
12+
* 添加临时用户访问功能
13+
* 添加路由拦截功能
14+
* 修改控制用户为管理用户,可访问控制API和对用户进行管理
15+
16+
17+
## 0.1.0
18+
`2021-6-1`
19+
* 实现基于 `ngx_http_auth_request_module` 模块的HTTP后端代理认证功能
20+
* 添加登录验证码功能
21+
* 添加HTTP远程登录接口认证
22+
* 添加控制功能API
23+
* 添加客户端IP限制功能
24+
* 添加访问时间段限制功能
25+
* 添加用户限制功能
26+
* 添加控制用户,可访问控制API

g/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package g
22

33
const (
4-
VERSION = "0.1.0"
4+
VERSION = "0.2.0"
55
)

0 commit comments

Comments
 (0)