Skip to content

Commit

Permalink
release v1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zonyitoo committed Jan 28, 2022
1 parent d3454db commit 73ad85d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /root/shadowsocks-rust

ADD . .

RUN rustup install nightly && \
RUN rustup install nightly && rustup default nightly && \
case "$TARGETARCH" in \
"386") \
RUST_TARGET="i686-unknown-linux-musl" \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build:
ifeq (${TARGET}, release)
cargo build --release --features "local-tun local-redir armv8 neon"
else
cargo build
cargo build --features "local-tun local-redir armv8 neon"
endif

install:
Expand Down
18 changes: 18 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
shadowsocks-rust (1.13.0) unstable; urgency=medium

## Features

- #706 `balancer.check_best_interval` could let ping balancer to ping only the choosen best server in this interval
- Recommended: Set a shorter interval in `balancer.check_best_interval` than `balancer.check_interval` to check much frequently the best server.
- `balancer.check_interval` controls the interval of checking all the available servers
- When server start, the "check best" strategy starts after it receives enough data for estimating all servers' scores
- #744 Refactored `local-tun`, using `smoltcp` as a user-space network stack

## Miscelleneous

- Upgrade [`clap`](https://crates.io/crates/clap) (the command-line argument handling library) to v3.0
- #739 Support K8S deployment
- [shadowsocks-crypto](https://github.com/shadowsocks/shadowsocks-crypto) switch underlying encryption library to [RustCrypto](https://github.com/RustCrypto)
- Able to build with stable Rust
- Build for target `aarch64` with nightly, features `"armv8 neon"` should be enabled for hardware acceleration.

shadowsocks-rust (1.12.5) unstable; urgency=medium

## Bug Fixes
Expand Down

0 comments on commit 73ad85d

Please sign in to comment.