mirror of https://github.com/dswd/vpncloud.git
Renamed default.net to example.net
This commit is contained in:
parent
8b2894d707
commit
d8783211d3
|
@ -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
|
||||
|
|
|
@ -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)",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue