update release notes (#4074)

This commit is contained in:
fatedier 2024-03-15 17:50:58 +08:00 committed by GitHub
parent 3585f5c0c0
commit acf33db4e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,21 @@
### Features
* Support range ports mapping in TOML/YAML/JSON configuration file by using go template syntax.
For example:
```
{{- range $_, $v := parseNumberRangePair "6000-6006,6007" "6000-6006,6007" }}
[[proxies]]
name = "tcp-{{ $v.First }}"
type = "tcp"
localPort = {{ $v.First }}
remotePort = {{ $v.Second }}
{{- end }}
```
This will create 8 proxies such as `tcp-6000, tcp-6001, ... tcp-6007`.
### Fixes ### Fixes
* Fix the issue of incorrect interval time for rotating the log by day. * Fix the issue of incorrect interval time for rotating the log by day.

View File

@ -14,7 +14,7 @@
package version package version
var version = "0.55.1" var version = "0.56.0"
func Full() string { func Full() string {
return version return version