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"