diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 0665fdad..9005a920 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -1,10 +1,6 @@ name: Build & Test -on: - push: - branches: [master] - pull_request: - branches: [master] +on: [push, pull_request] env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/build-msrv.yml b/.github/workflows/build-msrv.yml index e810123d..7e85b565 100644 --- a/.github/workflows/build-msrv.yml +++ b/.github/workflows/build-msrv.yml @@ -1,10 +1,6 @@ name: Build MSRV -on: - push: - branches: [master] - pull_request: - branches: [master] +on: [push, pull_request] env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/clippy-check.yml b/.github/workflows/clippy-check.yml index 1175c630..1f8dbc17 100644 --- a/.github/workflows/clippy-check.yml +++ b/.github/workflows/clippy-check.yml @@ -1,10 +1,6 @@ name: Clippy Check -on: - push: - branches: [master] - pull_request: - branches: [master] +on: [push, pull_request] env: CARGO_TERM_COLOR: always diff --git a/debian/changelog b/debian/changelog index cd4a107b..fb15bdff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,22 @@ +shadowsocks-rust (1.23.0) unstable; urgency=medium + + ## Features, Breaking Changes + + - MSRV bumps to v1.85, Rust language edition upgraded to `2024` + - `rand` crate upgraded to v0.9, which may be incompatible with other older crates + - `local-fake-dns` switched storage engine from `sled` to `rocksdb`, users should delete the old database file and let `sslocal` recreate it ageain + - `local-fake-dns` is moved from `full` to `full-extra` feature because its still unstable + + ## Bug fixes + + - #1832 Fixes FreeBSD build error + - #1833 Fixes `sswinservice.exe` file paths in Powershell build script + - `mips-*` targets cross build reenabled + + ## Miscellaneous + + - #1834 Shadowsocks entrance APIs has strongly typed errors + shadowsocks-rust (1.22.0) unstable; urgency=medium ## Features, Breaking Changes