commit ee64cbc0d6e2f2eecbf07788eb52936d17c75280
parent c7e33ddad393270856a53c326c4636b5ef314dc7
Author: krasjet
Date: 2020-10-11 07:31Z

release 1.2.2

Diffstat:
MCHANGELOG.md | 7+++++++
MREADME | 5+++--
MREADME.md | 5+++--
Mpdftocgen/__init__.py | 2+-
Mpdftocio/__init__.py | 2+-
Mpdfxmeta/__init__.py | 2+-
Mpyproject.toml | 2+-
7 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,6 +1,13 @@ Change log ========== +pdf.tocgen 1.2.2 +---------------- + +Released October 11, 2020 + +- Compatibility with Python 3.9 + pdf.tocgen 1.2.1 ---------------- diff --git a/README b/README @@ -28,8 +28,9 @@ Please see the homepage [1] for a detailed introduction. Installation ------------ -pdf.tocgen is written in Python 3. It is known to work with Python 3.8 under -Linux, but unit test suggests Python 3.7 should be the minimum. Use +pdf.tocgen is written in Python 3. It is known to work with Python 3.7 to 3.9 +on Linux, Windows, and macOS (On BSDs, you probably need to build PyMuPDF +yourself). Use $ pip install -U pdf.tocgen diff --git a/README.md b/README.md @@ -34,8 +34,9 @@ Please see the [**homepage**][tocgen] for a detailed introduction. Installation ------------ -pdf.tocgen is written in Python 3. It is known to work with Python 3.8 under -Linux, but unit test suggests Python 3.7 should be the minimum. Use +pdf.tocgen is written in Python 3. It is known to work with Python 3.7 to 3.9 +on Linux, Windows, and macOS (On BSDs, you probably need to build PyMuPDF +yourself). Use ```sh $ pip install -U pdf.tocgen diff --git a/pdftocgen/__init__.py b/pdftocgen/__init__.py @@ -1,3 +1,3 @@ """Generate table of contents for pdf based on a recipe file""" -__version__ = '1.2.1' +__version__ = '1.2.2' diff --git a/pdftocio/__init__.py b/pdftocio/__init__.py @@ -1,3 +1,3 @@ """Manipulating the table of contents of a pdf""" -__version__ = '1.2.1' +__version__ = '1.2.2' diff --git a/pdfxmeta/__init__.py b/pdfxmeta/__init__.py @@ -1,5 +1,5 @@ """Extract metadata (fonts, bounding box) for a string in a pdf""" -__version__ = '1.2.1' +__version__ = '1.2.2' from .pdfxmeta import extract_meta, dump_meta, dump_toml diff --git a/pyproject.toml b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pdf.tocgen" -version = "1.2.1" +version = "1.2.2" description = "Automatically generate table of contents for pdf files" authors = ["krasjet"] license = "GPL-3.0-or-later"