From 4eba0087e798457954b15f35a3f43a1f05924bbe Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Mon, 16 Mar 2020 17:07:43 -0700 Subject: [PATCH] Version bump to 0.1.1.dev1 --- CHANGELOG.md | 10 ++++++++++ dangerzone/__init__.py | 2 +- install/windows/Dangerzone.wxs | 2 +- pyproject.toml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dc90b4..3d9f444 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## dangerzone 0.1.1 + +- Fix macOS bug that caused a crash on versions earlier than Catalina +- Fix macOS app bundle ODF extensions (`.ods .odt`) +- Allow Linux users to type their password instead of adding their user to the `docker` group +- Use Docker instead of Podman in Fedora +- Allow the use of either OS-packaged Docker or Docker CE in Linux +- Allow opening `.docm` files +- Allow using a custom container for testing + ## dangerzone 0.1 - First release \ No newline at end of file diff --git a/dangerzone/__init__.py b/dangerzone/__init__.py index c235e0a..62f427c 100644 --- a/dangerzone/__init__.py +++ b/dangerzone/__init__.py @@ -2,7 +2,7 @@ import os import sys from .container import container_main -dangerzone_version = "0.1" +dangerzone_version = "0.1.1.dev1" # This is a hack for Windows and Mac to be able to run dangerzone-container, even though # PyInstaller builds a single binary diff --git a/install/windows/Dangerzone.wxs b/install/windows/Dangerzone.wxs index 2c3467f..61b50e2 100644 --- a/install/windows/Dangerzone.wxs +++ b/install/windows/Dangerzone.wxs @@ -1,5 +1,5 @@ - + diff --git a/pyproject.toml b/pyproject.toml index 9989a94..419a8d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dangerzone" -version = "0.1" +version = "0.1.1.dev1" description = "Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF" authors = ["Micah Lee "] license = "MIT"