From e798da9a99fc76a4b56f71380576737162b09c2b Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Thu, 9 Apr 2020 16:23:15 -0700 Subject: [PATCH] Version bump to 0.1.2 and update changelog --- CHANGELOG.md | 4 ++++ dangerzone/__init__.py | 2 +- install/windows/Dangerzone.wxs | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d9f444..85bccbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## dangerzone 0.1.2 (Linux only) + +- Add support for Ubuntu 18.04 LTS + ## dangerzone 0.1.1 - Fix macOS bug that caused a crash on versions earlier than Catalina diff --git a/dangerzone/__init__.py b/dangerzone/__init__.py index f1a171e..157c187 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.1" +dangerzone_version = "0.1.2" # 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 7503831..527a9c6 100644 --- a/install/windows/Dangerzone.wxs +++ b/install/windows/Dangerzone.wxs @@ -1,5 +1,5 @@ - + diff --git a/pyproject.toml b/pyproject.toml index f787e66..844d29a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dangerzone" -version = "0.1.1" +version = "0.1.2" description = "Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF" authors = ["Micah Lee "] license = "MIT"