From 0066acb772bed7e2c0f4a4a2931d449607c8713d Mon Sep 17 00:00:00 2001 From: Cory Francis Myers Date: Tue, 5 Jul 2022 18:28:39 -0700 Subject: [PATCH] chore: update version and changelog for v0.8.0 Co-Authored-By: Gonzalo Co-Authored-By: Allie --- changelog.md | 15 +++++++++++++++ securedrop_client/__init__.py | 2 +- securedrop_client/locale/messages.pot | 2 +- setup.py | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index d5924fd07..ed9821b67 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,20 @@ # Changelog +## 0.8.0 +* Drop historical versions of database schema (#1517) +* Replace "show/hide passphrase" widget with checkbox to increase accessibility (#1430) +* Remove enclosing directory when all submissions have been deleted for a source (#1475) +* Support Debian Bullseye (#1494, #1511, #1528) +* Support Qubes 4.1 (#1495, #1530) +* Allow translations to be enabled/disabled per language (#1497, #1527) +* Handle terminating threads cleanly (#1512, #1518, #1519) +* (Dev) Add tooling for visualizing the codebase (#1484) +* (Dev) Refactor export and print dialogs for maintainability (#1492, #1498, #1502, #1501) +* (Dev) Refactor signals according to Qt best practices (#1508) +* (Dev) Prevent intermittent tests suite errors (#1515) +* (Dev) Decouple database tests from models (#1517) +* (Dev) Support development on Debian Bullseye (#1496) + ## 0.7.0 * Clear global mouse selection after login (#1477) * Update securedrop-sdk from version 0.3.2 to 0.4.0 (#1466) diff --git a/securedrop_client/__init__.py b/securedrop_client/__init__.py index 49e0fc1e0..777f190df 100644 --- a/securedrop_client/__init__.py +++ b/securedrop_client/__init__.py @@ -1 +1 @@ -__version__ = "0.7.0" +__version__ = "0.8.0" diff --git a/securedrop_client/locale/messages.pot b/securedrop_client/locale/messages.pot index 76299e0e4..3ac8c18f2 100644 --- a/securedrop_client/locale/messages.pot +++ b/securedrop_client/locale/messages.pot @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: SecureDrop Client 0.7.0\n" +"Project-Id-Version: SecureDrop Client 0.8.0\n" "Report-Msgid-Bugs-To: securedrop@freedom.press\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" diff --git a/setup.py b/setup.py index 7ae66e956..9b39418eb 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setuptools.setup( name="securedrop-client", - version="0.7.0", + version="0.8.0", author="Freedom of the Press Foundation", author_email="securedrop@freedom.press", description="SecureDrop Workstation client application",