From d482db4e67f70ce740176b8507f29c3d3a55ab79 Mon Sep 17 00:00:00 2001 From: COMIT Botty McBotface Date: Wed, 1 Sep 2021 05:29:31 +0000 Subject: [PATCH] Prepare release 0.8.2 --- CHANGELOG.md | 17 ++++++++++------- Cargo.lock | 2 +- swap/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f2b5c51..36ae9c29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,28 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.2] - 2021-09-01 + ### Added - Add the ability to view the swap-cli bitcoin balance and withdraw - See issue https://github.com/comit-network/xmr-btc-swap/issues/694 + See issue ### Fixed - An issue where the connection between ASB and CLI would get closed prematurely. The CLI expects to be connected to the ASB throughout the entire swap and hence reconnects as soon as the connection is closed. This resulted in a loop of connections being established but instantly closed again because the ASB deemed the connection to not be necessary. - See issue https://github.com/comit-network/xmr-btc-swap/issues/648. + See issue . - An issue where the ASB was unable to use the Monero wallet in case `monero-wallet-rpc` has been restarted. In case no wallet is loaded when we try to interact with the `monero-wallet-rpc` daemon, we now load the correct wallet on-demand. - See issue https://github.com/comit-network/xmr-btc-swap/issues/652. + See issue . - An issue where swap protocol was getting stuck trying to submit the cancel transaction. We were not handling the error when TxCancel submission fails. We also configured the electrum client to retry 5 times in order to help with this problem. - See issues: https://github.com/comit-network/xmr-btc-swap/issues/709 https://github.com/comit-network/xmr-btc-swap/issues/688, https://github.com/comit-network/xmr-btc-swap/issues/701. + See issues: , . - Add the ability to view the swap-cli bitcoin balance and withdraw - See issue https://github.com/comit-network/xmr-btc-swap/issues/694 + See issue - An issue where the ASB withdraw one bitcoin UTXO at a time instead of the whole balance. - See issue https://github.com/comit-network/xmr-btc-swap/issues/662 + See issue ## [0.8.1] - 2021-08-16 @@ -201,7 +203,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed an issue where Alice would not verify if Bob's Bitcoin lock transaction is semantically correct, i.e. pays the agreed upon amount to an output owned by both of them. Fixing this required a **breaking change** on the network layer and hence old versions are not compatible with this version. -[Unreleased]: https://github.com/comit-network/xmr-btc-swap/compare/0.8.1...HEAD +[Unreleased]: https://github.com/comit-network/xmr-btc-swap/compare/0.8.2...HEAD +[0.8.2]: https://github.com/comit-network/xmr-btc-swap/compare/0.8.1...0.8.2 [0.8.1]: https://github.com/comit-network/xmr-btc-swap/compare/0.8.0...0.8.1 [0.8.0]: https://github.com/comit-network/xmr-btc-swap/compare/0.7.0...0.8.0 [0.7.0]: https://github.com/comit-network/xmr-btc-swap/compare/0.6.0...0.7.0 diff --git a/Cargo.lock b/Cargo.lock index 8e3d4fe5..3e708887 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4106,7 +4106,7 @@ checksum = "8049cf85f0e715d6af38dde439cb0ccb91f67fb9f5f63c80f8b43e48356e1a3f" [[package]] name = "swap" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "async-compression", diff --git a/swap/Cargo.toml b/swap/Cargo.toml index dbee39a1..5e57c0fb 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swap" -version = "0.8.1" +version = "0.8.2" authors = [ "The COMIT guys " ] edition = "2018" description = "XMR/BTC trustless atomic swaps."