Renamed default.net to example.net

This commit is contained in:
Dennis Schwerdel 2016-04-05 15:48:28 +02:00
parent 8b2894d707
commit d8783211d3
5 changed files with 4 additions and 2 deletions

View File

@ -17,6 +17,7 @@ This project follows [semantic versioning](http://semver.org).
- [changed] Using FNV hash for better performance
- [changed] Using slice operations instead of loops
- [changed] Updated libsodium to 1.0.10
- [changed] Renamed default.net to example.net
- [fixed] Fixed wrong hex address formatting
- [fixed] Fixed peer exchange for more than 65000 peers
- [fixed] Initializing crypto for benchmarks

2
Cargo.lock generated
View File

@ -1,6 +1,6 @@
[root]
name = "vpncloud"
version = "0.4.3"
version = "0.5.0"
dependencies = [
"aligned_alloc 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"docopt 0.6.78 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -5,7 +5,7 @@ vpncloud.1: vpncloud.1.ronn
install:
install -d $(DESTDIR)/etc/vpncloud
install -m 600 default.net $(DESTDIR)/etc/vpncloud/default.net
install -m 600 example.net $(DESTDIR)/etc/vpncloud/example.net
install -d $(DESTDIR)/var/log
install -d $(DESTDIR)/run
install -d $(DESTDIR)/usr/bin

View File

@ -13,6 +13,7 @@ vpncloud (0.5.0) stable; urgency=medium
* [changed] Using FNV hash for better performance
* [changed] Using slice operations instead of loops
* [changed] Updated libsodium to 1.0.10
* [changed] Renamed default.net to example.net
* [fixed] Fixed wrong hex address formatting
* [fixed] Fixed peer exchange for more than 65000 peers
* [fixed] Initializing crypto for benchmarks