Skip to content

Commit

Permalink
release v1.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zonyitoo committed Apr 21, 2024
1 parent d1111e9 commit 8467528
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 79 deletions.
80 changes: 7 additions & 73 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shadowsocks-rust"
version = "1.18.2"
version = "1.18.3"
authors = ["Shadowsocks Contributors"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/shadowsocks/shadowsocks-rust"
Expand Down Expand Up @@ -204,9 +204,9 @@ jemallocator = { version = "0.5", optional = true }
snmalloc-rs = { version = "0.3", optional = true }
rpmalloc = { version = "0.2", optional = true }

shadowsocks-service = { version = "1.18.2", path = "./crates/shadowsocks-service" }
shadowsocks-service = { version = "1.18.3", path = "./crates/shadowsocks-service" }

windows-service = { version = "0.6", optional = true }
windows-service = { version = "0.7", optional = true }

[target.'cfg(unix)'.dependencies]
daemonize = "0.5"
Expand Down
4 changes: 2 additions & 2 deletions crates/shadowsocks-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shadowsocks-service"
version = "1.18.2"
version = "1.18.3"
authors = ["Shadowsocks Contributors"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/shadowsocks/shadowsocks-rust"
Expand Down Expand Up @@ -181,7 +181,7 @@ smoltcp = { version = "0.11", optional = true, default-features = false, feature
serde = { version = "1.0", features = ["derive"] }
json5 = "0.4"

shadowsocks = { version = "1.18.1", path = "../shadowsocks", default-features = false }
shadowsocks = { version = "1.18.2", path = "../shadowsocks", default-features = false }

# Just for the ioctl call macro
[target.'cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/shadowsocks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shadowsocks"
version = "1.18.1"
version = "1.18.2"
authors = ["Shadowsocks Contributors"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/shadowsocks/shadowsocks-rust"
Expand Down
15 changes: 15 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
shadowsocks-rust (1.18.3) unstable; urgency=medium

## Features

- #1466 Support `outbound_fwmark` in server side to split outbound tunnel
- #1467 Default build for `*-windows-*` targets includes `sswinservice`
- `local-fakedns`: Add a basic implementation of Fake-DNS, which will allocate IPs from pool for DNS queries. This experimental feature could be useful when using `local-tun`, `local-redir` or other features that could only receive IP destinations, the domain name that is resolved by the Fake-DNS will be translated from IP back to domain name when connecting to the remote.
- #1500 Add `launchd_udp_socket_name`, `launchd_tcp_socket_name` to basic config format

## Bug Fixes

- Fixed build on OpenBSD
- #1491 Fixed per-server outbound options not taking effect
- #1509 `local-tun` TCP socket creation made non-blocking

shadowsocks-rust (1.18.2) unstable; urgency=medium

## Features
Expand Down

0 comments on commit 8467528

Please sign in to comment.