release v1.13.3

This commit is contained in:
zonyitoo
2022-02-20 17:12:24 +08:00
parent 5ffab23b72
commit 120737e63e
5 changed files with 17 additions and 10 deletions

8
Cargo.lock generated
View File

@@ -1991,7 +1991,7 @@ dependencies = [
[[package]]
name = "shadowsocks"
version = "1.13.1"
version = "1.13.2"
dependencies = [
"arc-swap 1.5.0",
"async-trait",
@@ -2026,9 +2026,9 @@ dependencies = [
[[package]]
name = "shadowsocks-crypto"
version = "0.3.2"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61b3d33b95f89d95837ecb0a0d5ec07cac499bc08cb2ec4c4b741097b3e6629e"
checksum = "f5fa7f78b7e5570cb5fbb0e7b1466fda8bbcb9fef8b09ee816f89dd10ba3dd1d"
dependencies = [
"aes",
"aes-gcm",
@@ -2078,7 +2078,7 @@ dependencies = [
[[package]]
name = "shadowsocks-service"
version = "1.13.2"
version = "1.13.3"
dependencies = [
"arc-swap 1.5.0",
"async-trait",

View File

@@ -164,7 +164,7 @@ jemallocator = { version = "0.3", optional = true }
snmalloc-rs = { version = "0.2", optional = true }
rpmalloc = { version = "0.2", optional = true }
shadowsocks-service = { version = "1.13.2", path = "./crates/shadowsocks-service" }
shadowsocks-service = { version = "1.13.3", path = "./crates/shadowsocks-service" }
[target.'cfg(unix)'.dependencies]
daemonize = "0.4"

View File

@@ -1,6 +1,6 @@
[package]
name = "shadowsocks-service"
version = "1.13.2"
version = "1.13.3"
authors = ["Shadowsocks Contributors"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/shadowsocks/shadowsocks-rust"
@@ -125,7 +125,7 @@ smoltcp = { version = "0.8", optional = true, features = [] }
serde = { version = "1.0", features = ["derive"] }
json5 = "0.4"
shadowsocks = { version = "1.13.1", path = "../shadowsocks" }
shadowsocks = { version = "1.13.2", path = "../shadowsocks" }
# Just for the ioctl call macro
[target.'cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd", target_os = "netbsd", target_os = "openbsd"))'.dependencies]

View File

@@ -1,6 +1,6 @@
[package]
name = "shadowsocks"
version = "1.13.1"
version = "1.13.2"
authors = ["Shadowsocks Contributors"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/shadowsocks/shadowsocks-rust"
@@ -73,10 +73,10 @@ arc-swap = { version = "1.3", optional = true }
notify = { version = "5.0.0-pre.13", optional = true }
[target.'cfg(any(target_arch = "x86_64", target_arch = "aarch64"))'.dependencies]
shadowsocks-crypto = { version = "0.3", features = ["ring"] }
shadowsocks-crypto = { version = "0.3.3", features = ["ring"] }
[target.'cfg(not(any(target_arch = "x86_64", target_arch = "aarch64")))'.dependencies]
shadowsocks-crypto = { version = "0.3", features = [] }
shadowsocks-crypto = { version = "0.3.3", features = [] }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["mswsock", "winsock2", "netioapi"] }

7
debian/changelog vendored
View File

@@ -1,3 +1,10 @@
shadowsocks-rust (1.13.3) unsable; urgency=medium
## BUG Fixes
- #767 REGRESSION: `ssmanager` missing `--server-host` command line option since v1.13.0
- shadowsocks/shadowsocks-crypto#12 REGRESSION: `rc4-md5` method cipher IV length should be 16
shadowsocks-rust (1.13.2) unstable; urgency=medium
## Features