diff --git a/BUILD.md b/BUILD.md index c86ae3a..ac1441e 100644 --- a/BUILD.md +++ b/BUILD.md @@ -222,3 +222,12 @@ poetry run install\windows\step3-build-installer.bat When you're done you will have `dist\Dangerzone.msi`. + + +# Release instructions + +Before each release: + +- Update `CHANGELOG.md` +- Update the version in `pyproject.toml` +- Update the version in `dangerzone/__init__.py` diff --git a/CHANGELOG.md b/CHANGELOG.md index 85bccbe..4be52e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## dangerzone 0.1.3 + +- Add support for Ubuntu 20.04 LTS (#79) +- Prevent crash in macOS if specific PDF viewers are installed (#75) + ## dangerzone 0.1.2 (Linux only) - Add support for Ubuntu 18.04 LTS diff --git a/README.md b/README.md index 44ab597..2c4ead7 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ _Read more about dangerzone in the blog post [Dangerzone: Working With Suspiciou ## Getting started -- Download [dangerzone 0.1.1 for Mac](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.1/Dangerzone.0.1.1.dmg) -- Download [dangerzone 0.1.1 for Windows](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.1/Dangerzone.0.1.1.msi) +- Download [dangerzone 0.1.3 for Mac](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.3/Dangerzone.0.1.3.dmg) +- Download [dangerzone 0.1.3 for Windows](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.3/Dangerzone.0.1.3.msi) - See [installing dangerzone](https://github.com/firstlookmedia/dangerzone/wiki/Installing-Dangerzone) on the wiki for Linux repositories You can also install dangerzone for Mac using [Homebrew](https://brew.sh/): `brew cask install dangerzone` diff --git a/dangerzone/__init__.py b/dangerzone/__init__.py index 157c187..b283ec5 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.2" +dangerzone_version = "0.1.3" # 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/pyproject.toml b/pyproject.toml index 844d29a..a22e6da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dangerzone" -version = "0.1.2" +version = "0.1.3" description = "Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF" authors = ["Micah Lee "] license = "MIT"