diff --git a/CHANGELOG.md b/CHANGELOG.md index b6cf217..411d0d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ This project follows [semantic versioning](http://semver.org). -### UNRELEASED +### v1.4.0 (2020-06-03) - [added] Added option to listen on specified IP - [added] Added support for statsd monitoring @@ -16,7 +16,6 @@ This project follows [semantic versioning](http://semver.org). - [fixed] Fixed problem that could lead to 100% cpu consumption - [fixed] Fixed startup race condition - ### v1.3.0 (2020-01-25) - [added] Building for aarch64 aka arm64 (thanks to Ivan) diff --git a/Cargo.lock b/Cargo.lock index 9c506c1..0f86d20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -669,7 +669,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "vpncloud" -version = "1.3.0" +version = "1.4.0" dependencies = [ "cc 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)", "daemonize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 3ac563d..bf1e428 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vpncloud" -version = "1.3.0" +version = "1.4.0" authors = ["Dennis Schwerdel "] build = "build.rs" license = "GPL-3.0" diff --git a/assets/changelog.txt b/assets/changelog.txt index 4a7f2a6..35ad76a 100644 --- a/assets/changelog.txt +++ b/assets/changelog.txt @@ -1,3 +1,19 @@ +vpncloud (1.4.0) stable; urgency=medium + + * [added] Added option to listen on specified IP + * [added] Added support for statsd monitoring + * [changed] No longer using two sockets for ipv4 and ipv6 + * [changed] Warning for missing router is now info + * [changed] New warning on claimed addresses in learning mode + * [changed] Rewrote argument parsing + * [changed] Changed stats file format to YAML + * [changed] Using asciidoc for manpage + * [changed] Updated dependencies + * [fixed] Fixed problem that could lead to 100% cpu consumption + * [fixed] Fixed startup race condition + + -- Dennis Schwerdel Wed, 03 Jun 2020 17:46:00 +0200 + vpncloud (1.3.0) stable; urgency=medium * [added] Building for aarch64 aka arm64 (thanks to Ivan)