From 120737e63eed818170b2f6764150ad96897767e8 Mon Sep 17 00:00:00 2001 From: zonyitoo Date: Sun, 20 Feb 2022 17:12:24 +0800 Subject: [PATCH] release v1.13.3 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- crates/shadowsocks-service/Cargo.toml | 4 ++-- crates/shadowsocks/Cargo.toml | 6 +++--- debian/changelog | 7 +++++++ 5 files changed, 17 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8803d4296c5d..b70c80982b4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 41f7e5649039..cbf03d9b4fe0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/crates/shadowsocks-service/Cargo.toml b/crates/shadowsocks-service/Cargo.toml index 007edd7d953b..7b688c728804 100644 --- a/crates/shadowsocks-service/Cargo.toml +++ b/crates/shadowsocks-service/Cargo.toml @@ -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] diff --git a/crates/shadowsocks/Cargo.toml b/crates/shadowsocks/Cargo.toml index a6cb5c6f2705..d11f1c7cd2f6 100644 --- a/crates/shadowsocks/Cargo.toml +++ b/crates/shadowsocks/Cargo.toml @@ -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"] } diff --git a/debian/changelog b/debian/changelog index b21dae3eb130..9fe20f1a814b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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