mirror of https://github.com/dswd/vpncloud.git
Release 0.8.0
This commit is contained in:
parent
6d9fdddb7c
commit
65dd7dd1ab
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
This project follows [semantic versioning](http://semver.org).
|
This project follows [semantic versioning](http://semver.org).
|
||||||
|
|
||||||
### UNRELEASED
|
### v0.8.0 (2016-11-25)
|
||||||
|
|
||||||
- [added] Support for automatic port forwarding via UPnP
|
- [added] Support for automatic port forwarding via UPnP
|
||||||
- [added] Added `-s` shorthand for `--subnet`
|
- [added] Added `-s` shorthand for `--subnet`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[root]
|
[root]
|
||||||
name = "vpncloud"
|
name = "vpncloud"
|
||||||
version = "0.7.0"
|
version = "0.8.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aligned_alloc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"aligned_alloc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "vpncloud"
|
name = "vpncloud"
|
||||||
version = "0.7.0"
|
version = "0.8.0"
|
||||||
authors = ["Dennis Schwerdel <schwerdel@informatik.uni-kl.de>"]
|
authors = ["Dennis Schwerdel <schwerdel@informatik.uni-kl.de>"]
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
license = "GPL-3.0"
|
license = "GPL-3.0"
|
||||||
|
@ -34,3 +34,6 @@ pkg-config = "0.3"
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
bench = []
|
bench = []
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
lto = true
|
||||||
|
|
|
@ -1,3 +1,27 @@
|
||||||
|
vpncloud (0.8.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* [added] Support for automatic port forwarding via UPnP
|
||||||
|
* [added] Added `-s` shorthand for `--subnet`
|
||||||
|
* [added] Support for YAML config file via `--config`
|
||||||
|
* [added] Support for running in the background
|
||||||
|
* [added] Support for dropping permissions
|
||||||
|
* [added] Support for writing a pid file
|
||||||
|
* [added] Support for writing logs to logfile
|
||||||
|
* [changed] Not overriding recently learnt addresses in switch mode
|
||||||
|
* [changed] Caching resolved addresses to increase performance
|
||||||
|
* [changed] Configurable magic header is now used instead of Network-ID (**incompatible**)
|
||||||
|
* [changed] Clarified documentation on TUN netmasks
|
||||||
|
* [changed] Added timestamps to output
|
||||||
|
* [changed] Using new YAML config instead of old config files (**incompatible**)
|
||||||
|
* [changed] Prefer IPv4 over IPv6 when possible
|
||||||
|
* [fixed] Fixed documentation of listen parameter
|
||||||
|
* [fixed] Fixed problem with multiple subnets
|
||||||
|
* [fixed] Fixed problem with interrupted poll after suspend to ram
|
||||||
|
* [fixed] Forgot to extend peer timeout on peer exchange
|
||||||
|
* [fixed] No longer broadcasting to additional addresses
|
||||||
|
|
||||||
|
-- Dennis Schwerdel <schwerdel@informatik.uni-kl.de> Fri, 25 Nov 2016 07:30:17 +0100
|
||||||
|
|
||||||
vpncloud (0.7.0) stable; urgency=medium
|
vpncloud (0.7.0) stable; urgency=medium
|
||||||
|
|
||||||
* [added] Added more tests
|
* [added] Added more tests
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
[Unit]
|
||||||
|
Description=VpnCloud network '%I'
|
||||||
|
Before=systemd-user-sessions.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=forking
|
||||||
|
ExecStart=/usr/bin/vpncloud --config /etc/vpncloud/%i.net --daemon --log-file /var/log/vpncloud-%i.log --pid-file /run/vpncloud-%i.run
|
||||||
|
WorkingDirectory=/etc/vpncloud
|
||||||
|
PIDFile=/run/vpncloud-%i.run
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
Loading…
Reference in New Issue