diff options
author | Linus Färnstrand <linus@mullvad.net> | 2020-05-27 13:57:48 +0200 |
---|---|---|
committer | Linus Färnstrand <linus@mullvad.net> | 2020-05-27 13:58:48 +0200 |
commit | 02b3e394e18ba94b77d368848eb4090e7875c1b7 (patch) | |
tree | 615ad3081d779ec1e4ef497d0fe63e37e04bc294 | |
parent | 343727fdede3d7c2e6f5338d2267be41295859f1 (diff) |
Add 0.4.0 to changelog and bump version
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | nftnl-sys/Cargo.toml | 2 | ||||
-rw-r--r-- | nftnl/Cargo.toml | 4 |
3 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d4e44d4..4ce7f87 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] + + +## [0.4.0] - 2020-05-27 ### Added - Add `Reject` verdict for responding with ICMP packets or TCP RST to the origin. diff --git a/nftnl-sys/Cargo.toml b/nftnl-sys/Cargo.toml index f716296..28d54b7 100644 --- a/nftnl-sys/Cargo.toml +++ b/nftnl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nftnl-sys" -version = "0.3.0" +version = "0.4.0" authors = ["Mullvad VPN"] license = "MIT/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 56edc7b..eae4ed4 100644 --- a/nftnl/Cargo.toml +++ b/nftnl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nftnl" -version = "0.3.0" +version = "0.4.0" authors = ["Mullvad VPN"] license = "MIT/Apache-2.0" description = "Safe abstraction for libnftnl. Provides low-level userspace access to the in-kernel nf_tables subsystem" @@ -23,7 +23,7 @@ bitflags = "1.0" err-derive = "0.2.4" libc = "0.2.40" log = "0.4" -nftnl-sys = { path = "../nftnl-sys", version = "0.3" } +nftnl-sys = { path = "../nftnl-sys", version = "0.4" } [dev-dependencies] ipnetwork = "0.16" |