Release 0.7.0

pull/9/head v0.7.0
Dennis Schwerdel 2016-08-05 08:50:22 +02:00
parent d5a6002507
commit 75c54998e6
5 changed files with 28 additions and 9 deletions

View File

@ -4,6 +4,9 @@ This project follows [semantic versioning](http://semver.org).
### UNRELEASED
### v0.7.0 (2016-08-05)
- [added] Added more tests
- [added] Added pluggable polling system
- [added] Added documentation
@ -11,6 +14,7 @@ This project follows [semantic versioning](http://semver.org).
- [changed] Updated dependencies
- [changed] Turned some clippy warnings off
- [changed] Cross-compiling for ARM
- [changed] Updated libsodium to 1.0.11
- [removed] Removed Address remove code for prefix table
- [fixed] Reconnecting to lost peers when receiving from them or sending to them
- [fixed] Sending peer list more often to prevent timeouts

9
Cargo.lock generated
View File

@ -1,6 +1,6 @@
[root]
name = "vpncloud"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"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)",
@ -15,7 +15,6 @@ dependencies = [
"rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)",
"signal 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -187,11 +186,6 @@ dependencies = [
"nix 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "smallvec"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "strsim"
version = "0.3.0"
@ -277,7 +271,6 @@ dependencies = [
"checksum rustc_version 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "c5f5376ea5e30ce23c03eb77cbe4962b988deead10910c372b226388b594c084"
"checksum semver 0.1.20 (registry+https://github.com/rust-lang/crates.io-index)" = "d4f410fedcf71af0345d7607d246e7ad15faaadd49d240ee3b24e5dc21a820ac"
"checksum signal 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "beb615e58999635b6063277cf520f2d88824955c1056cf4f166b0f55b218512d"
"checksum smallvec 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "fcc8d19212aacecf95e4a7a2179b26f7aeb9732a915cf01f05b0d3e044865410"
"checksum strsim 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e4d73a2c36a4d095ed1a6df5cbeac159863173447f7a82b3f4757426844ab825"
"checksum thread-id 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03"
"checksum thread_local 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "55dd963dbaeadc08aa7266bf7f91c3154a7805e32bb94b820b769d2ef3b4744d"

View File

@ -1,6 +1,6 @@
[package]
name = "vpncloud"
version = "0.6.0"
version = "0.7.0"
authors = ["Dennis Schwerdel <schwerdel@informatik.uni-kl.de>"]
build = "build.rs"
license = "GPL-3.0"

View File

@ -16,6 +16,10 @@ bench:
git submodule update --init
cargo bench --features bench
.PHONY: deb
deb:
make -C deb
.PHONY: clean
clean:
rm -rf target

View File

@ -1,3 +1,21 @@
vpncloud (0.7.0) stable; urgency=medium
* [added] Added more tests
* [added] Added pluggable polling system
* [added] Added documentation
* [changed] Code cleanup
* [changed] Updated dependencies
* [changed] Turned some clippy warnings off
* [changed] Cross-compiling for ARM
* [changed] Updated libsodium to 1.0.11
* [removed] Removed Address remove code for prefix table
* [fixed] Reconnecting to lost peers when receiving from them or sending to them
* [fixed] Sending peer list more often to prevent timeouts
* [fixed] Removing learnt addresses of lost peers
* [fixed] Fixed possible crash in message decoding
-- Dennis Schwerdel <schwerdel@informatik.uni-kl.de> Fri, 05 Aug 2016 08:47:06 +0200
vpncloud (0.6.0) stable; urgency=medium
* [added] Exponential backoff for reconnect timeouts