diff --git a/CHANGES.rst b/CHANGES.rst index ea3f8d1a..289d0504 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Changes ======= -1.3.2 -- 2021-03-22 +1.3.3 -- 2021-03-23 ------------------- * Fixed `#95 `_: ``helpers.make_wifi`` and ``helpers.make_wifi_data`` may return @@ -11,6 +11,11 @@ Changes signature and doc strings to match the stub / type hints. +1.3.2 -- 2021-03-22 +------------------- +* Not released due to twine issues (markup errors in README.rst) + + 1.3.1 -- 2020-09-01 ------------------- * Fixed: Stub files (type hints) were missing from the source distribution. diff --git a/man/segno.1 b/man/segno.1 index 35d6ed78..6cc7e681 100644 --- a/man/segno.1 +++ b/man/segno.1 @@ -1,6 +1,6 @@ .\" Man page generated from reStructuredText. . -.TH "SEGNO" "1" "Sep 01, 2020" "1.3.1" "Segno" +.TH "SEGNO" "1" "Mar 23, 2021" "1.3.3" "Segno" .SH NAME segno \- Segno QR Code encoder . @@ -391,6 +391,6 @@ Saves the Micro QR Code (M2\-M) as PNG image, using the color #003399 for dark modules. Each module corresponds to 4 x 4 pixels because the scaling factor was set to 4. .SH COPYRIGHT -2016 - 2020 Lars Heuer -- "QR Code" and "Micro QR Code" are registered trademarks of DENSO WAVE INCORPORATED. +2016 - 2021 Lars Heuer -- "QR Code" and "Micro QR Code" are registered trademarks of DENSO WAVE INCORPORATED. .\" Generated by docutils manpage writer. . diff --git a/segno/__init__.py b/segno/__init__.py index 97ebfecd..20eb975e 100644 --- a/segno/__init__.py +++ b/segno/__init__.py @@ -21,7 +21,7 @@ except NameError: # pragma: no cover str_type = str -__version__ = '1.3.3.dev' +__version__ = '1.3.3' __all__ = ('make', 'make_qr', 'make_micro', 'make_sequence', 'QRCode', 'QRCodeSequence', 'DataOverflowError')