From ba0f23dac29298e0ec665edeb1754f1b96b66492 Mon Sep 17 00:00:00 2001 From: redshiftzero Date: Wed, 6 May 2020 11:02:46 -0400 Subject: [PATCH] securedrop-client 0.2.0 --- changelog.md | 22 ++++++++++++++++++++++ securedrop_client/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 405661e44..c94436110 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,27 @@ # Changelog +## 0.2.0 + +* Improve error handling when conversation items fail to decrypt (#1059). +* Enable copy/paste in SpeechBubble (#1063). +* Clear clipboard after login (#1071). +* Disable context menu on SpeechBubble (#1065). +* Rely on SDK default for most requests (#1056). +* Increase metadata sync timeout (#1055). +* Minimize number of database queries during sync (#1037, #1036). +* Defer source key import until reply (#1035). +* Speed up update_replies (#1046). +* Download items for most recently active sources first (#1043). +* Align source name and preview (#1044). +* Align file name and print button (#1045). +* Add utils.chronometer for measuring block execution time (#1034). +* Log intended folders instead of empty strings (#1069). +* Use looping animation for metadata sync (#1057). +* Use securedrop-sdk version 0.1.0 (#1076). +* Update PyYAML to 5.3.1 (#1041). +* Use pytest fixtures for functional tests (#1067). +* Bugfix: Remove leading and trailing whitespace from messages (#1058). + ## 0.1.6 * Fix truncation and alignment issues in conversation view (#1029). diff --git a/securedrop_client/__init__.py b/securedrop_client/__init__.py index 2fb25139f..7fd229a32 100644 --- a/securedrop_client/__init__.py +++ b/securedrop_client/__init__.py @@ -1 +1 @@ -__version__ = '0.1.6' +__version__ = '0.2.0' diff --git a/setup.py b/setup.py index 3f25e2ab3..d01c80354 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setuptools.setup( name="securedrop-client", - version="0.1.6", + version="0.2.0", author="Freedom of the Press Foundation", author_email="securedrop@freedom.press", description="SecureDrop Workstation client application",