From bb7b0f81c4c19441fecb035df39be74718c7f536 Mon Sep 17 00:00:00 2001 From: sand <sand@autistici.org> Date: Wed, 20 Feb 2019 18:28:14 +0000 Subject: [PATCH] bump version and update README --- README.md | 4 +++- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a05b5ea..0c3ebbf 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,11 @@ pgp-mime-lib Simple Python package to send [PGP/MIME](https://www.ietf.org/rfc/rfc3156.txt) multipart/encrypted and multipart/signed emails. Uses the -[gnupg](https://pypi.python.org/pypi/gnupg) Python module to talk to +[python-gnupg](https://gnupg.readthedocs.io/en/latest/) Python module to talk to gpg. The package is agnostic with respect to key management: recipients' public keys are not permanently stored in a keyring, but are passed along with each message by the caller. + +Python compatibility: 2.7 / 3.5+ diff --git a/pyproject.toml b/pyproject.toml index 3b4809d..a56b550 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pgp_mime_lib" -version = "0.1.1" +version = "0.1.2" description = "Create PGP/MIME emails." authors = ["AI <info@autistici.org>"] diff --git a/setup.py b/setup.py index f38b408..02cbffc 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup( name="pgp_mime_lib", - version="0.1.1", + version="0.1.2", description="Create PGP/MIME emails.", author="Autistici/Inventati", author_email="info@autistici.org", -- GitLab