diff --git a/HISTORY.md b/HISTORY.md index 2a014ab..1aa20ad 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 的函数 diff --git a/README.en.md b/README.en.md index c3f85da..72e8149 100644 --- a/README.en.md +++ b/README.en.md @@ -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 ) ``` diff --git a/README.md b/README.md index c92ae3d..81b0552 100644 --- a/README.md +++ b/README.md @@ -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 ) ``` diff --git a/doc.go b/doc.go index 2de92c1..dbe83ce 100644 --- a/doc.go +++ b/doc.go @@ -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"