Skip to content

Commit 22f8325

Browse files
committed
version 1.1.2 release
1 parent 06991d0 commit 22f8325

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
:target: https://zebrafy.readthedocs.io/en/latest/?badge=latest
1313
:alt: Documentation Status
1414

15-
.. image:: https://img.shields.io/badge/pypi-1.1.1-blue
16-
:target: https://pypi.org/project/zebrafy/
17-
:alt: PyPi Package
15+
.. image:: https://img.shields.io/pypi/v/zebrafy
16+
:target: https://pypi.org/project/zebrafy
17+
:alt: Zebrafy PyPi Package
1818

1919
.. image:: https://img.shields.io/badge/license-LGPLv3-green
2020
:target: https://www.gnu.org/licenses/lgpl-3.0.en.html#license-text

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project = "Zebrafy"
2020
copyright = "2023, Miika Nissi"
2121
author = "Miika Nissi"
22-
version = "1.1.1"
22+
version = "1.1.2"
2323
release = version
2424

2525
# -- General configuration ---------------------------------------------------

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "zebrafy"
7-
version = "1.1.1"
7+
version = "1.1.2"
88
description = "Python library for converting PDF and images to Zebra Programming Language (ZPL)"
99
classifiers = [
1010
"Development Status :: 4 - Beta",

tests/test_zebrafy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def _read_static_file(self, file_name: str) -> Union[bytes, str]:
5151

5252
def test_version(self):
5353
"""Test package version."""
54-
self.assertEqual(__version__, "1.1.1")
54+
self.assertEqual(__version__, "1.1.2")
5555

5656
###########
5757
# CRC Tests

zebrafy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
from .zebrafy_pdf import ZebrafyPDF
55
from .zebrafy_zpl import ZebrafyZPL
66

7-
__version__ = "1.1.1"
7+
__version__ = "1.1.2"

0 commit comments

Comments
 (0)