diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e8fb1b..3581270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] + + +## [1.0.0] - 2024-09-19 ### Added - Implement `Default` for `nftnl::batch::Batch`. - Add support for Raw payload expressions. diff --git a/Cargo.lock b/Cargo.lock index 0bfcf56..f229dce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -58,7 +58,7 @@ dependencies = [ [[package]] name = "nftnl" -version = "0.6.2" +version = "0.7.0" dependencies = [ "bitflags", "ipnetwork", @@ -69,7 +69,7 @@ dependencies = [ [[package]] name = "nftnl-sys" -version = "0.6.1" +version = "0.6.2" dependencies = [ "cfg-if", "libc", diff --git a/nftnl-sys/Cargo.toml b/nftnl-sys/Cargo.toml index 917d190..52ee0ff 100644 --- a/nftnl-sys/Cargo.toml +++ b/nftnl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nftnl-sys" -version = "0.6.1" +version = "0.6.2" authors = ["Mullvad VPN"] license = "MIT OR Apache-2.0" description = "Low level FFI bindings to libnftnl. Provides low-level userspace access to the in-kernel nf_tables subsystem" diff --git a/nftnl/Cargo.toml b/nftnl/Cargo.toml index 93bbefa..fff1237 100644 --- a/nftnl/Cargo.toml +++ b/nftnl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nftnl" -version = "0.6.2" +version = "0.7.0" authors = ["Mullvad VPN"] license = "MIT OR Apache-2.0" description = "Safe abstraction for libnftnl. Provides low-level userspace access to the in-kernel nf_tables subsystem" @@ -22,7 +22,7 @@ nftnl-1-1-2 = ["nftnl-sys/nftnl-1-1-2"] [dependencies] bitflags = "2.6.0" log = "0.4" -nftnl-sys = { path = "../nftnl-sys", version = "0.6.1" } +nftnl-sys = { path = "../nftnl-sys", version = "0.6.2" } [dev-dependencies] ipnetwork = "0.20.0"