瀏覽代碼

update release notes (#4074)

fatedier 1 年之前
父節點
當前提交
acf33db4e4
共有 2 個文件被更改,包括 19 次插入1 次删除
  1. 18 0
      Release.md
  2. 1 1
      pkg/util/version/version.go

+ 18 - 0
Release.md

@@ -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.

+ 1 - 1
pkg/util/version/version.go

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