Skip to content

Commit f376683

Browse files
committed
Update documentation
1 parent 4b61d6e commit f376683

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV GOPROXY ${GOPROXY}
77
ENV CGO_ENABLED=0
88
RUN set -ex \
99
&& apk add git build-base \
10-
&& export COMMIT=$(git rev-parse HEAD) \
10+
&& export COMMIT=$(git rev-parse --short HEAD) \
1111
&& go build -v -trimpath -tags 'no_gvisor,with_quic,with_wireguard,with_acme' \
1212
-o /go/bin/sing-box \
1313
-ldflags "-X github.com/sagernet/sing-box/constant.Commit=${COMMIT} -w -s -buildid=" \

constant/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package constant
22

33
var (
4-
Version = "1.0-rc1"
4+
Version = "1.0"
55
Commit = ""
66
)

docs/changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#### 1.0
2+
3+
* Fix wireguard reconnect
4+
* Fix naive inbound
5+
* Fix json format error message
6+
* Fix processing vmess termination signal
7+
* Fix hysteria stream error
8+
* Fix listener close when proxyproto failed
9+
110
#### 1.0-rc1
211

312
* Fix write log timestamp

0 commit comments

Comments
 (0)