Skip to content

Commit

Permalink
Prepare release for v0.1.3 (#4)
Browse files Browse the repository at this point in the history
* added gif to doc

* prep v0.1.3
  • Loading branch information
timueh authored May 30, 2022
1 parent 332b168 commit 7613ac1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
[![codecov](https://codecov.io/gh/timueh/py-epc-qr/branch/main/graph/badge.svg?token=LMQKVGWT2W)](https://codecov.io/gh/timueh/py-epc-qr)
![tests](https://github.com/timueh/py-epc-qr/actions/workflows/pytest.yml/badge.svg)
![lint_with_black](https://github.com/timueh/py-epc-qr/actions/workflows/black.yml/badge.svg)
[![pypi](https://img.shields.io/badge/PyPI-py--epc--qr-blue)](https://pypi.org/project/py-epc-qr/)


# Create QR codes for wire transfers

Expand All @@ -11,7 +13,9 @@ Why not just scan a QR code and have your favorite banking app take care of the
Why not be generous and support wikipedia with EUR10?
Grab your phone, open your banking app, select the QR scanner and scan the image below which was created with this tool.

![Support Wikipedia with 10 €](tests/data/qr_wikimedia.png "Support Wikipedia with 10 €")
![Support Wikipedia with 10 €](img/create_qr.gif "Support Wikipedia with 10 €")

![Support Wikipedia with 10 €](img/qr_wikimedia.png "Support Wikipedia with 10 €")

[The created QR code complies with the European Payments Council (EPC) Quick Response (QR) code guidelines.](https://en.wikipedia.org/wiki/EPC_QR_code)

Expand Down
Binary file added img/create_qr.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/qr_wikimedia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion py_epc_qr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Init"""
__version__ = "0.1.2.2"
__version__ = "0.1.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "py-epc-qr"
version = "0.1.2.2"
version = "0.1.3"
description = "Generate EPC-compatible QR codes for wire transfers"
authors = ["timueh <t.muehlpfordt@mailbox.org>"]
license = "MIT"
Expand Down
Binary file removed tests/data/qr_wikimedia.png
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/test_py_epc_qr.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_version():
"""
Check version.
"""
assert __version__ == "0.1.2.2"
assert __version__ == "0.1.3"


def get_valid_dummy_iban() -> str:
Expand Down

0 comments on commit 7613ac1

Please sign in to comment.