diff --git a/README.md b/README.md
index a05b5ea8ff7eec5db8ddb8566275c382c3ea3be6..0c3ebbf03c2085d0c9f9e68b416be3a94c3586ff 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 3b4809de2cb6da9a22eb9458521ed6fef325a31b..a56b5505241f243d855a9a3e63ecb0047f7c786b 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 f38b4082aed00e903bff86d62fee5b12fb460a57..02cbffc8df3e9b7bcad9ccdb0ba44f2a09613681 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",