From 46c3dc88c759b8917e9796f6a4ffca2ef973903c Mon Sep 17 00:00:00 2001 From: Ro Date: Thu, 22 Aug 2024 18:05:46 -0400 Subject: [PATCH 1/4] Add 0.13.0 changelog and bump version to 0.13.0 (cherry picked from commit 2e617cb6f3b9119e8dc744fb48d6c461a487066d) --- changelog.md | 10 ++++++++++ client/securedrop_client/__init__.py | 2 +- debian/changelog | 4 ++-- export/securedrop_export/__init__.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index 9e417ed8a..ddc140d99 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,15 @@ # Changelog +## 0.13.0 + +* Broaden printing support to all filetypes supported by LibreOffice (#2166) +* Display an error message if user tries to print an unprintable file type (#2166) +* Use magic bytes to detect file type in print workflow (#2166) +* Use single PrintDialog GUI element for all print actions (#2143) +* Remove unused _from_string methods from SDK (#2144) +* Update build toolchain and `setuptools` for CVE-2024-6345 (#2136, [securedrop-builder#501](https://github.com/freedomofpress/securedrop-builder/pull/501)) +* Update `ruff` to 0.5.4 (#2138) + ## 0.12.0 * Support viewing .heic and .avif files (#2110) diff --git a/client/securedrop_client/__init__.py b/client/securedrop_client/__init__.py index d0caa0099..f23a6b39d 100644 --- a/client/securedrop_client/__init__.py +++ b/client/securedrop_client/__init__.py @@ -1 +1 @@ -__version__ = "0.13.0-rc1" +__version__ = "0.13.0" diff --git a/debian/changelog b/debian/changelog index 5ad8d8296..6678a1a2f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -securedrop-client (0.13.0~rc1) unstable; urgency=medium +securedrop-client (0.13.0) unstable; urgency=medium * see changelog.md - -- SecureDrop Team Thu, 25 Jul 2024 20:45:40 -0400 + -- SecureDrop Team Thu, 22 Aug 2024 18:41:50 -0400 securedrop-client (0.12.0) unstable; urgency=medium diff --git a/export/securedrop_export/__init__.py b/export/securedrop_export/__init__.py index d0caa0099..f23a6b39d 100644 --- a/export/securedrop_export/__init__.py +++ b/export/securedrop_export/__init__.py @@ -1 +1 @@ -__version__ = "0.13.0-rc1" +__version__ = "0.13.0" From 7eb2c9b9311ea1d1ef71753539bfef53a6aea891 Mon Sep 17 00:00:00 2001 From: Ro Date: Fri, 23 Aug 2024 13:59:18 -0400 Subject: [PATCH 2/4] Update 0.13.0 changelog (cherry picked from commit a3219616d913f0c184521f3ef89a67d5547aef9b) --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index ddc140d99..ae4ff8dce 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,7 @@ ## 0.13.0 +* Support direct printing of image types supported by `cups` (#2174) * Broaden printing support to all filetypes supported by LibreOffice (#2166) * Display an error message if user tries to print an unprintable file type (#2166) * Use magic bytes to detect file type in print workflow (#2166) From cbdb0ad84b2f3d4ed26596b2acc2b04df937245d Mon Sep 17 00:00:00 2001 From: Ro Date: Tue, 27 Aug 2024 13:22:11 -0400 Subject: [PATCH 3/4] Bump version to 0.13.1 and update changelog (cherry picked from commit b42804d3e385233594cc87b27907cb81a06159fe) --- changelog.md | 4 ++-- client/securedrop_client/__init__.py | 2 +- debian/changelog | 4 ++-- export/securedrop_export/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/changelog.md b/changelog.md index ae4ff8dce..536ddbac7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,11 +1,11 @@ # Changelog -## 0.13.0 +## 0.13.1 +* Ensure accurate mimetype detection of Office files, add additional sample files to integration tests (#2184) * Support direct printing of image types supported by `cups` (#2174) * Broaden printing support to all filetypes supported by LibreOffice (#2166) * Display an error message if user tries to print an unprintable file type (#2166) -* Use magic bytes to detect file type in print workflow (#2166) * Use single PrintDialog GUI element for all print actions (#2143) * Remove unused _from_string methods from SDK (#2144) * Update build toolchain and `setuptools` for CVE-2024-6345 (#2136, [securedrop-builder#501](https://github.com/freedomofpress/securedrop-builder/pull/501)) diff --git a/client/securedrop_client/__init__.py b/client/securedrop_client/__init__.py index f23a6b39d..7e0dc0e84 100644 --- a/client/securedrop_client/__init__.py +++ b/client/securedrop_client/__init__.py @@ -1 +1 @@ -__version__ = "0.13.0" +__version__ = "0.13.1" diff --git a/debian/changelog b/debian/changelog index 6678a1a2f..0da354cbd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -securedrop-client (0.13.0) unstable; urgency=medium +securedrop-client (0.13.1) unstable; urgency=medium * see changelog.md - -- SecureDrop Team Thu, 22 Aug 2024 18:41:50 -0400 + -- SecureDrop Team Tue, 27 Aug 2024 13:16:31 -0400 securedrop-client (0.12.0) unstable; urgency=medium diff --git a/export/securedrop_export/__init__.py b/export/securedrop_export/__init__.py index f23a6b39d..7e0dc0e84 100644 --- a/export/securedrop_export/__init__.py +++ b/export/securedrop_export/__init__.py @@ -1 +1 @@ -__version__ = "0.13.0" +__version__ = "0.13.1" From a8030ace48d8abd2a195653c68b2ce7807a7cfac Mon Sep 17 00:00:00 2001 From: Ro Date: Wed, 28 Aug 2024 09:41:26 -0400 Subject: [PATCH 4/4] Bump version on main to 0.14.0-rc1 --- client/securedrop_client/__init__.py | 2 +- debian/changelog | 6 ++++++ export/securedrop_export/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/client/securedrop_client/__init__.py b/client/securedrop_client/__init__.py index 7e0dc0e84..8ad8ffb45 100644 --- a/client/securedrop_client/__init__.py +++ b/client/securedrop_client/__init__.py @@ -1 +1 @@ -__version__ = "0.13.1" +__version__ = "0.14.0-rc1" diff --git a/debian/changelog b/debian/changelog index 0da354cbd..cbf59456e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +securedrop-client (0.14.0~rc1) unstable; urgency=medium + + * see changelog.md + + -- SecureDrop Team Wed, 28 Aug 2024 09:40:34 -0400 + securedrop-client (0.13.1) unstable; urgency=medium * see changelog.md diff --git a/export/securedrop_export/__init__.py b/export/securedrop_export/__init__.py index 7e0dc0e84..8ad8ffb45 100644 --- a/export/securedrop_export/__init__.py +++ b/export/securedrop_export/__init__.py @@ -1 +1 @@ -__version__ = "0.13.1" +__version__ = "0.14.0-rc1"