Skip to content

Commit 30daaf2

Browse files
committed
v1.1.1 release
1 parent 5ad91e9 commit 30daaf2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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.0-blue
15+
.. image:: https://img.shields.io/badge/pypi-1.1.1-blue
1616
:target: https://pypi.org/project/zebrafy/
1717
:alt: PyPi Package
1818

Diff for: 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.0"
22+
version = "1.1.1"
2323
release = version
2424

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

Diff for: 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.0"
7+
version = "1.1.1"
88
description = "Python library for converting PDF and images to Zebra Programming Language (ZPL)"
99
classifiers = [
1010
"Development Status :: 4 - Beta",

Diff for: 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.0")
54+
self.assertEqual(__version__, "1.1.1")
5555

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

Diff for: 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.0"
7+
__version__ = "1.1.1"

0 commit comments

Comments
 (0)