chore: bump version to v1.23.3

This commit is contained in:
zonyitoo
2025-05-06 22:59:39 +08:00
parent 5f043450e6
commit b2a52cbd00
4 changed files with 5 additions and 29 deletions

4
Cargo.lock generated
View File

@@ -3399,7 +3399,7 @@ dependencies = [
[[package]]
name = "shadowsocks-rust"
version = "1.23.2"
version = "1.23.3"
dependencies = [
"base64",
"build-time",
@@ -3440,7 +3440,7 @@ dependencies = [
[[package]]
name = "shadowsocks-service"
version = "1.23.2"
version = "1.23.3"
dependencies = [
"arc-swap",
"brotli",

View File

@@ -1,6 +1,6 @@
[package]
name = "shadowsocks-rust"
version = "1.23.2"
version = "1.23.3"
authors = ["Shadowsocks Contributors"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/shadowsocks/shadowsocks-rust"
@@ -242,7 +242,7 @@ jemallocator = { version = "0.5", optional = true }
snmalloc-rs = { version = "0.3", optional = true }
rpmalloc = { version = "0.2", optional = true }
shadowsocks-service = { version = "1.23.2", path = "./crates/shadowsocks-service" }
shadowsocks-service = { version = "1.23.3", path = "./crates/shadowsocks-service" }
windows-service = { version = "0.8", optional = true }

View File

@@ -1,6 +1,6 @@
[package]
name = "shadowsocks-service"
version = "1.23.2"
version = "1.23.3"
authors = ["Shadowsocks Contributors"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/shadowsocks/shadowsocks-rust"

View File

@@ -2006,18 +2006,6 @@ impl Config {
nsvr.set_timeout(timeout);
}
let mut outbound_bind_addr: Option<IpAddr> = None;
if let Some(ref bind_addr) = config.outbound_bind_addr {
match bind_addr.parse::<IpAddr>() {
Ok(b) => outbound_bind_addr = Some(b),
Err(..) => {
let err = Error::new(ErrorKind::Invalid, "invalid outbound_bind_addr", None);
return Err(err);
}
}
}
nconfig.server.push(ServerInstanceConfig::with_server_config(nsvr));
}
(None, None, None, Some(_)) if config_type.is_manager() => {
@@ -2190,18 +2178,6 @@ impl Config {
nsvr.set_weight(weight);
}
let mut outbound_bind_addr: Option<IpAddr> = None;
if let Some(ref bind_addr) = config.outbound_bind_addr {
match bind_addr.parse::<IpAddr>() {
Ok(b) => outbound_bind_addr = Some(b),
Err(..) => {
let err = Error::new(ErrorKind::Invalid, "invalid outbound_bind_addr", None);
return Err(err);
}
}
}
let mut server_instance = ServerInstanceConfig::with_server_config(nsvr);
if let Some(acl_path) = svr.acl {