From 5c53b821ffc25a86f6a0cf9fd300648a26f7727f Mon Sep 17 00:00:00 2001 From: Roman Proskuryakov Date: Sat, 18 May 2019 20:53:30 +0300 Subject: [PATCH] chore(cargo): bump version --- CHANGELOG.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 46 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41cb97939..1f7b22843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,47 @@ +# 0.0.10 (May 27, 2019) + +* Do not store peer_session_pk in net crypto status (#373) +* Re-grouping file transfer packets from messenger (#371) +* Add ser/de for Conference packets (#356, #358) +* Properly increase unsuccessful attempts counter in tcp client (#369) +* Add .editorconfig (#366) +* Implement onion client (#312) +* Refactor send timeouts (#365) +* Fix overflow in the netcrypto stats calculation (#364) +* Add macros for errors (#357) +* Add "new" method to DhtPkAnnouncePayload (#351) +* Add function to kill a crypto connection (#350) +* Add method to get random nodes from fake friends (#349) +* Store both IPv4 and IPv6 addresses in the crypto connection (#347) +* Add function to set friend's IP address (#346) +* Handle incoming crypto handshake (#345) +* Add function to add a new net crypto connection (#344) +* Add function to get random relays we are connected to (#343) +* Add method for sending lossless packet (#340) +* Handle CryptoData packet (#342) +* Add encrypt/decrypt functions to InnerOnionDataRequest (#341) +* Adjust RequestQueue so that it can be used for onion client (#338) +* Add ser/de for Messenger::FileSendRequest (#331) +* More generic KbucketNode (#339) +* Reduce the number of tokio deps (#337) +* Do not replace a friend with empty struct after readding (#332) +* Add ser/de for MSI packet (#313) +* Fix wrong keys being used for net crypto handshake (#329) +* Add ser/de for Onion::FriendReq (#324) +* Do not send the same packet to the same node twice (#323) +* Add ser/de for Messenger::StatusMessage (#316) +* Add ser/de for Messenger::Typing packet (#318) +* Add packet for DHT PK announcing (#321) +* Add ser/de for Messenger::UserStatus packet (#317) +* Unify IpPort structs (#322) +* Add ser/de for Messenger::Message packet (#319) +* Add ser/de for Messenger::Action packet (#320) +* Add ser/de for Messenger::FileControl packet (#315) +* Add ser/de for Messenger::FileData packet (#314) +* Add function for unbiased random numbers (#309) +* Unify kbucket with nodes queue (#310) + + # 0.0.9 (January 27, 2019) * Add dht::MAIN_LOOP_INTERVAL const (#304) diff --git a/Cargo.toml b/Cargo.toml index 24368cb60..1e3f6388e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tox" -version = "0.0.9" +version = "0.0.10" authors = [ "Zetok Zalbavar ", "Roman Proskuryakov ", @@ -37,7 +37,7 @@ sodiumoxide = "0.2.2" nom = "3.2" cookie-factory = "0.2" get_if_addrs = "0.5" -parking_lot = "0.7" +parking_lot = "0.8" failure = "0.1" lru = "0.1" bitflags = "1.0"