mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Version bump to 0.1.3 and update changelog
This commit is contained in:
parent
44595fe2b6
commit
753134dc3f
5 changed files with 18 additions and 4 deletions
9
BUILD.md
9
BUILD.md
|
@ -222,3 +222,12 @@ poetry run install\windows\step3-build-installer.bat
|
||||||
|
|
||||||
|
|
||||||
When you're done you will have `dist\Dangerzone.msi`.
|
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`
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
# Change Log
|
# 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)
|
## dangerzone 0.1.2 (Linux only)
|
||||||
|
|
||||||
- Add support for Ubuntu 18.04 LTS
|
- Add support for Ubuntu 18.04 LTS
|
||||||
|
|
|
@ -10,8 +10,8 @@ _Read more about dangerzone in the blog post [Dangerzone: Working With Suspiciou
|
||||||
|
|
||||||
## Getting started
|
## 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.3 for Mac](https://github.com/firstlookmedia/dangerzone/releases/download/v0.1.3/Dangerzone.0.1.3.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 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
|
- 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`
|
You can also install dangerzone for Mac using [Homebrew](https://brew.sh/): `brew cask install dangerzone`
|
||||||
|
|
|
@ -2,7 +2,7 @@ import os
|
||||||
import sys
|
import sys
|
||||||
from .container import container_main
|
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
|
# This is a hack for Windows and Mac to be able to run dangerzone-container, even though
|
||||||
# PyInstaller builds a single binary
|
# PyInstaller builds a single binary
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "dangerzone"
|
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"
|
description = "Take potentially dangerous PDFs, office documents, or images and convert them to a safe PDF"
|
||||||
authors = ["Micah Lee <micah.lee@theintercept.com>"]
|
authors = ["Micah Lee <micah.lee@theintercept.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
Loading…
Reference in a new issue