diff --git a/CHANGELOG.md b/CHANGELOG.md index 8435812..7c080f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to ## [Unreleased] +## [Unreleased-sys] + +## [0.7.0-beta.0] - 2024-12-08 + ### Added - Add `wait` recv methods back @@ -30,7 +34,7 @@ and this project adheres to - All generic OS errors will be properly handled as `WinDivertError::OsError` -## [Unreleased-sys] +## [sys-0.11.0-beta.0] - 2024-12-08 ### Changed @@ -120,6 +124,8 @@ and this project adheres to [unreleased]: https://github.com/Rubensei/windivert-rust/compare/windivert-0.6.0...HEAD [unreleased-sys]: https://github.com/Rubensei/windivert-rust/compare/windivert-sys-0.10.0...HEAD +[0.7.0-beta.0]: https://github.com/Rubensei/windivert-rust/compare/windivert-0.6.0...windivert-0.7.0-beta.0 +[sys-0.11.0-beta.0]: https://github.com/Rubensei/windivert-rust/compare/windivert-sys-0.10.0...windivert-sys-0.11.0-beta.0 [0.6.0]: https://github.com/Rubensei/windivert-rust/compare/windivert-0.5.5...windivert-0.6.0 [sys-0.10.0]: https://github.com/Rubensei/windivert-rust/compare/windivert-sys-0.9.3...windivert-sys-0.10.0 [sys-0.9.3]: https://github.com/Rubensei/windivert-rust/compare/windivert-sys-0.9.2...windivert-sys-0.9.3 diff --git a/windivert-sys/Cargo.toml b/windivert-sys/Cargo.toml index 2d984cf..2471432 100644 --- a/windivert-sys/Cargo.toml +++ b/windivert-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windivert-sys" -version = "0.11.0-alpha.3" +version = "0.11.0-beta.0" description = "Raw FFI bindings for WinDivert user mode library" authors = ["Ruben Serrano Izquierdo "] repository = "https://github.com/Rubensei/windivert-rust.git" diff --git a/windivert/Cargo.toml b/windivert/Cargo.toml index f951e00..ea4c309 100644 --- a/windivert/Cargo.toml +++ b/windivert/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windivert" -version = "0.7.0-alpha.3" +version = "0.7.0-beta.0" description = "Wrapper library around windivert-sys" authors = ["Ruben Serrano Izquierdo "] repository = "https://github.com/Rubensei/windivert-rust.git" @@ -21,7 +21,7 @@ static = ["vendored", "windivert-sys/static"] [dependencies] etherparse = "0.16" thiserror = "1" -windivert-sys = { version = "0.11.0-alpha.3", path = "../windivert-sys" } +windivert-sys = { version = "0.11.0-beta.0", path = "../windivert-sys" } [dev-dependencies] mockall = "0.13"