Skip to content

Commit

Permalink
v1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
miikanissi committed May 12, 2024
1 parent 5ad91e9 commit 30daaf2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
:target: https://zebrafy.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://img.shields.io/badge/pypi-1.1.0-blue
.. image:: https://img.shields.io/badge/pypi-1.1.1-blue
:target: https://pypi.org/project/zebrafy/
:alt: PyPi Package

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
project = "Zebrafy"
copyright = "2023, Miika Nissi"
author = "Miika Nissi"
version = "1.1.0"
version = "1.1.1"
release = version

# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "zebrafy"
version = "1.1.0"
version = "1.1.1"
description = "Python library for converting PDF and images to Zebra Programming Language (ZPL)"
classifiers = [
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_zebrafy.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _read_static_file(self, file_name: str) -> Union[bytes, str]:

def test_version(self):
"""Test package version."""
self.assertEqual(__version__, "1.1.0")
self.assertEqual(__version__, "1.1.1")

###########
# CRC Tests
Expand Down
2 changes: 1 addition & 1 deletion zebrafy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .zebrafy_pdf import ZebrafyPDF
from .zebrafy_zpl import ZebrafyZPL

__version__ = "1.1.0"
__version__ = "1.1.1"

0 comments on commit 30daaf2

Please sign in to comment.