This commit is contained in:
2025-12-17 21:12:49 +08:00
parent 21592ae8a0
commit ff35510ef0
5 changed files with 10 additions and 9 deletions

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ agent
node.log
node.pid
config.yaml
.DS_Store

View File

@@ -337,8 +337,8 @@ BACKEND_URL=http://192.168.1.100:8080 ./run.sh start
版本号统一从 `version.json` 文件读取:
```json
{
"version": "1.1.0",
"tag": "v1.1.0"
"version": "1.1.2",
"tag": "v1.1.2"
}
```
@@ -414,8 +414,8 @@ BACKEND_URL=http://192.168.1.100:8080 ./run.sh start
版本号和标签统一从 `version.json` 文件读取:
```json
{
"version": "1.1.0",
"tag": "v1.1.0"
"version": "1.1.2",
"tag": "v1.1.2"
}
```
@@ -605,7 +605,7 @@ tail -n 100 node.log
## 更新日志
### v1.1.0 (最新)
### v1.1.2 (最新)
**新增功能:**
- ✨ 添加日志文件输出功能,支持配置日志文件路径和级别

View File

@@ -61,7 +61,7 @@ v1.2.0 (2019-09-26)
and `errors.Is`.
v1.1.0 (2017-06-30)
v1.1.2 (2017-06-30)
===================
- Added an `Errors(error) []error` function to extract the underlying list of

View File

@@ -489,7 +489,7 @@ Enhancements:
[#402]: https://github.com/uber-go/zap/pull/402
## v1.1.0 (31 Mar 2017)
## v1.1.2 (31 Mar 2017)
This release fixes two bugs and adds some enhancements to zap's testing helpers.
It is fully backward-compatible.

View File

@@ -1,4 +1,4 @@
{
"version": "1.1.0",
"tag": "v1.1.0"
"version": "1.1.2",
"tag": "v1.1.2"
}