diff --git a/CHANGES.rst b/CHANGES.rst index e3802470..f665ba98 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changes ======= -1.6.0 -- yyyy-mm-dd +1.6.0 -- 2023-11-28 ------------------- * Dropped Python 2.7 support * Removed dependency on ``pkg_resources``. Segno uses ``importlib.metadata`` diff --git a/man/segno.1 b/man/segno.1 index 3869db0c..d3cc508e 100644 --- a/man/segno.1 +++ b/man/segno.1 @@ -27,7 +27,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]] .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .in \\n[rst2man-indent\\n[rst2man-indent-level]]u .. -.TH "SEGNO" "1" "Oct 25, 2023" "1.5.3" "Segno" +.TH "SEGNO" "1" "Nov 28, 2023" "1.6.0" "Segno" .SH NAME segno \- Segno QR Code encoder .SH SYNOPSIS diff --git a/segno/__init__.py b/segno/__init__.py index da317e8c..9a04a68c 100644 --- a/segno/__init__.py +++ b/segno/__init__.py @@ -16,7 +16,7 @@ from .encoder import DataOverflowError from . import writers, utils -__version__ = '1.6.0.dev' +__version__ = '1.6.0' __all__ = ('make', 'make_qr', 'make_micro', 'make_sequence', 'QRCode', 'QRCodeSequence', 'DataOverflowError')