Skip to content

Commit 0348ace

Browse files
committed
Initial release
1 parent c5e3820 commit 0348ace

File tree

4 files changed

+32
-20
lines changed

4 files changed

+32
-20
lines changed

Makefile

+8-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,14 @@ snapshot:
4949
ghr --delete --draft --prerelease -p 1 nightly dist/release
5050
rm -r dist
5151

52-
snapshot_install:
52+
release:
53+
goreleaser release --rm-dist --skip-publish
54+
mkdir dist/release
55+
mv dist/*.tar.gz dist/*.zip dist/*.deb dist/*.rpm dist/release
56+
ghr --delete --draft --prerelease -p 3 $(shell git describe --tags) dist/release
57+
rm -r dist
58+
59+
release_install:
5360
go install -v github.com/goreleaser/goreleaser@latest
5461
go install -v github.com/tcnksm/ghr@latest
5562

cmd/sing-box/cmd_version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func printVersion(cmd *cobra.Command, args []string) {
3838
version += runtime.Version()
3939
version += ", "
4040
version += runtime.GOOS
41-
version += ", "
41+
version += "/"
4242
version += runtime.GOARCH
4343
version += ", "
4444
version += "CGO "

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"
4+
Version = "1.0-beta1"
55
Commit = ""
66
)

docs/changelog.md

+22-17
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
#### 2022/08/26
1+
#### 1.0-beta1
2+
3+
* Initial release
4+
5+
##### 2022/08/26
26

37
* Fix ipv6 route on linux
8+
* Fix read DNS message
49

5-
#### 2022/08/25
10+
##### 2022/08/25
611

712
* Let vmess use zero instead of auto if TLS enabled
813
* Add trojan fallback for ALPN
@@ -11,7 +16,7 @@
1116
* Fix http proxy with compressed response
1217
* Fix route connections
1318

14-
#### 2022/08/24
19+
##### 2022/08/24
1520

1621
* Fix naive padding
1722
* Fix unix search path
@@ -20,7 +25,7 @@
2025
* Fix early close on windows and catch any
2126
* Initial zh-CN document translation
2227

23-
#### 2022/08/23
28+
##### 2022/08/23
2429

2530
* Add [V2Ray Transport](/configuration/shared/v2ray-transport) support for VMess and Trojan
2631
* Allow plain http request in Naive inbound (It can now be used with nginx)
@@ -29,17 +34,17 @@
2934
* Parse X-Forward-For in HTTP requests
3035
* Handle SIGHUP signal
3136

32-
#### 2022/08/22
37+
##### 2022/08/22
3338

3439
* Add strategy setting for each [DNS server](/configuration/dns/server)
3540
* Add bind address to outbound options
3641

37-
#### 2022/08/21
42+
##### 2022/08/21
3843

3944
* Add [Tor outbound](/configuration/outbound/tor)
4045
* Add [SSH outbound](/configuration/outbound/ssh)
4146

42-
#### 2022/08/20
47+
##### 2022/08/20
4348

4449
* Attempt to unwrap ip-in-fqdn socksaddr
4550
* Fix read packages in android 12
@@ -49,52 +54,52 @@
4954
* Skip bind connection with private destination to interface
5055
* Add [Trojan connection fallback](/configuration/inbound/trojan#fallback)
5156

52-
#### 2022/08/19
57+
##### 2022/08/19
5358

5459
* Add Hysteria [Inbound](/configuration/inbound/hysteria) and [Outbund](/configuration/outbound/hysteria)
5560
* Add [ACME TLS certificate issuer](/configuration/shared/tls)
5661
* Allow read config from stdin (-c stdin)
5762
* Update gVisor to 20220815.0
5863

59-
#### 2022/08/18
64+
##### 2022/08/18
6065

6166
* Fix find process with lwip stack
6267
* Fix crash on shadowsocks server
6368
* Fix crash on darwin tun
6469
* Fix write log to file
6570

66-
#### 2022/08/17
71+
##### 2022/08/17
6772

6873
* Improve async dns transports
6974

70-
#### 2022/08/16
75+
##### 2022/08/16
7176

7277
* Add ip_version (route/dns) rule item
7378
* Add [WireGuard](/configuration/outbound/wireguard) outbound
7479

75-
#### 2022/08/15
80+
##### 2022/08/15
7681

7782
* Add uid, android user and package rules support in [Tun](/configuration/inbound/tun) routing.
7883

79-
#### 2022/08/13
84+
##### 2022/08/13
8085

8186
* Fix dns concurrent write
8287

83-
#### 2022/08/12
88+
##### 2022/08/12
8489

8590
* Performance improvements
8691
* Add UoT option for [SOCKS](/configuration/outbound/socks) outbound
8792

88-
#### 2022/08/11
93+
##### 2022/08/11
8994

9095
* Add UoT option for [Shadowsocks](/configuration/outbound/shadowsocks) outbound, UoT support for all inbounds
9196

92-
#### 2022/08/10
97+
##### 2022/08/10
9398

9499
* Add full-featured [Naive](/configuration/inbound/naive) inbound
95100
* Fix default dns server option [#9] by iKirby
96101

97-
#### 2022/08/09
102+
##### 2022/08/09
98103

99104
No changelog before.
100105

0 commit comments

Comments
 (0)