Skip to content

Commit

Permalink
update release notes (fatedier#4074)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatedier authored Mar 15, 2024
1 parent 3585f5c commit acf33db
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions Release.md
Original file line number Diff line number Diff line change
@@ -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

* Fix the issue of incorrect interval time for rotating the log by day.
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

package version

var version = "0.55.1"
var version = "0.56.0"

func Full() string {
return version
Expand Down

0 comments on commit acf33db

Please sign in to comment.