Skip to content

Commit

Permalink
[#51] Changelog, readme, version
Browse files Browse the repository at this point in the history
  • Loading branch information
alycejenni committed Apr 25, 2024
1 parent fb21878 commit 00a6e06
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
20 changes: 16 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:

::

Expand Down
2 changes: 1 addition & 1 deletion pylibdmtx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Read and write Data Matrix barcodes from Python 2 and 3."""

__version__ = '0.1.10'
__version__ = '0.1.11'

0 comments on commit 00a6e06

Please sign in to comment.