Version bump to 0.1.1.dev1

This commit is contained in:
Micah Lee 2020-03-16 17:07:43 -07:00
parent d62995366f
commit 4eba0087e7
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
4 changed files with 13 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='windows-1252'?>
<?define ProductVersion = "0.1.0"?>
<?define ProductVersion = "0.1.1.dev1"?>
<?define ProductUpgradeCode = "12b9695c-965b-4be0-bc33-21274e809576"?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name="Dangerzone" Manufacturer="First Look Media" Id="f40ff0a9-ebf8-4e1e-9bce-6ab5c74fe119" UpgradeCode="$(var.ProductUpgradeCode)" Language="1033" Codepage="1252" Version="$(var.ProductVersion)">

View file

@ -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 <micah.lee@theintercept.com>"]
license = "MIT"