Skip to content

Commit

Permalink
v0.0.10 版本发布
Browse files Browse the repository at this point in the history
  • Loading branch information
FishGoddess committed Mar 10, 2020
1 parent ee34d27 commit 4ad01da
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## ✒ 历史版本的特性介绍 (Features in old version)

### v0.0.10
> 此版本发布于 2020-03-10
* 扩展了 Logger 的方法,可以获取到内部的属性,为日志处理器做准备
* 支持创建 Logger 对象之后修改它的输出源 writer(这是个之前被遗漏的功能特性哈哈)
* 调整了内部 log 方法的锁机制,使用类似于写时复制的方式释放日志输出的并发性

### v0.0.9
> 此版本发布于 2020-03-09
* 支持日志输出函数,日志信息可以是一个返回 string 的函数
Expand Down
2 changes: 1 addition & 1 deletion README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module your_project_name
go 1.14

require (
github.com/FishGoddess/logit v0.0.9
github.com/FishGoddess/logit v0.0.10
)
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module your_project_name
go 1.14

require (
github.com/FishGoddess/logit v0.0.9
github.com/FishGoddess/logit v0.0.10
)
```

Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,4 @@ Package logit provides an easy way to use foundation for your logging operations
package logit // import "github.com/FishGoddess/logit"

// Version is the version string representation of the "logit" package.
const Version = "0.0.9"
const Version = "0.0.10"

0 comments on commit 4ad01da

Please sign in to comment.