Skip to content

Commit

Permalink
version 1.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
miikanissi committed May 16, 2024
1 parent 06991d0 commit 22f8325
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
:target: https://zebrafy.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

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

.. image:: https://img.shields.io/badge/license-LGPLv3-green
:target: https://www.gnu.org/licenses/lgpl-3.0.en.html#license-text
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.1"
version = "1.1.2"
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.1"
version = "1.1.2"
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.1")
self.assertEqual(__version__, "1.1.2")

###########
# 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.1"
__version__ = "1.1.2"

0 comments on commit 22f8325

Please sign in to comment.