From 00a6e0691db6cd2951d5b4614a9825962f53a7ff Mon Sep 17 00:00:00 2001 From: Alice Butcher Date: Thu, 25 Apr 2024 11:08:49 +0100 Subject: [PATCH] [#51] Changelog, readme, version --- CHANGELOG.md | 4 ++++ README.rst | 20 ++++++++++++++++---- pylibdmtx/__init__.py | 2 +- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f2eaae..0add43f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### v0.1.11 + +* #51 Return four vertices and Rect object for rotated images + ### v0.1.10 * #68 Add support for images loaded using imageio diff --git a/README.rst b/README.rst index fccae4a..7a1f79b 100644 --- a/README.rst +++ b/README.rst @@ -7,8 +7,8 @@ pylibdmtx .. image:: https://badge.fury.io/py/pylibdmtx.svg :target: https://pypi.python.org/pypi/pylibdmtx -.. image:: https://img.shields.io/github/workflow/status/NaturalHistoryMuseum/pylibdmtx/Tests/master?label=tests - :target: https://github.com/NaturalHistoryMuseum/pylibdmtx/actions?query=workflow%3A%22Tests%22 +.. image:: https://img.shields.io/github/actions/workflow/status/NaturalHistoryMuseum/pylibdmtx/test.yml?label=tests + :target: https://github.com/NaturalHistoryMuseum/pylibdmtx/actions/workflows/test.yml .. image:: https://coveralls.io/repos/github/NaturalHistoryMuseum/pylibdmtx/badge.svg?branch=master :target: https://coveralls.io/github/NaturalHistoryMuseum/pylibdmtx?branch=master @@ -45,8 +45,20 @@ Linux: sudo apt-get install libdmtx0a -Install this Python wrapper; use the second form to install dependencies of the -``read_datamatrix`` and ``write_datamatrix`` command-line scripts: +The PyPI package is currently out-of-date; to install the latest version, use: + +:: + + pip install git+https://github.com/NaturalHistoryMuseum/pylibdmtx.git + +To use the +``read_datamatrix`` and ``write_datamatrix`` command-line scripts, you will also need to install Pillow >= 3.2.0: + +:: + + pip install "Pillow>=3.2.0" + +If you want to install the outdated package from PyPI: :: diff --git a/pylibdmtx/__init__.py b/pylibdmtx/__init__.py index fd40215..629654b 100644 --- a/pylibdmtx/__init__.py +++ b/pylibdmtx/__init__.py @@ -1,3 +1,3 @@ """Read and write Data Matrix barcodes from Python 2 and 3.""" -__version__ = '0.1.10' +__version__ = '0.1.11'