Skip to content

Commit

Permalink
Merge branch 'release/0.2.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
heuer committed Sep 21, 2016
2 parents 824cd42 + 7d39a25 commit 489ae1a
Show file tree
Hide file tree
Showing 23 changed files with 763 additions and 796 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changes
=======

0.2.2 -- 2016-mm-dd
-------------------
* Command line script reports Segno's version (``--ver``) and the version
is also mentioned in the help message (``-h``) (#24)
* Support for creating E-mail addresses or complete messages (``segno.helpers``)
* Internal optimizations and more correct minimal version finding (#26)


0.2.1 -- 2016-09-15
-------------------
* Fixed Python packaging (source distribution did not work), again
Expand Down
6 changes: 3 additions & 3 deletions docs/_static/chart_create.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions docs/_static/chart_png.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions docs/_static/chart_svg.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/comparison-qrcode-libs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Features
Description `qrcode`_ `PyQRCode`_ `qrcodegen`_ `Segno`_
============================================ ================== =================== ================== ========
Library license `BSD`_ `BSD`_ `MIT`_ `BSD`_
Library version 5.3 1.2.1 1.0.0 0.1.8
Library version 5.3 1.2.1 1.0.0 0.2.2
Mode Numeric Yes Yes Yes Yes
Mode Alphanumeric Yes Yes Yes Yes
Mode Byte Yes Yes Yes Yes
Expand Down
6 changes: 3 additions & 3 deletions sandbox/out/chart_create.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions sandbox/out/chart_png.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions sandbox/out/chart_svg.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions sandbox/out/results.csv
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
PyQRCode create,35.67
qrcodegen create,20.14
qrcode create,28.83
Segno create,18.32
PyQRCode SVG,37.32
qrcodegen SVG,20.23
qrcode SVG path,80.13
qrcode SVG rects,65.56
Segno SVG,19.92
PyQRCode PNG,95.91
qrcode PNG,66.84
Segno PNG,24.88
PyQRCode create,37.90
qrcodegen create,24.87
qrcode create,34.97
Segno create,23.31
PyQRCode SVG,49.18
qrcodegen SVG,27.65
qrcode SVG path,99.45
qrcode SVG rects,82.64
Segno SVG,24.98
PyQRCode PNG,113.93
qrcode PNG,82.33
Segno PNG,31.06
2 changes: 1 addition & 1 deletion segno/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
VersionError, DataOverflowError
from . import writers, utils

__version__ = '0.2.1'
__version__ = '0.2.2'

__all__ = ('make', 'make_qr', 'make_micro', 'QRCode', 'QRCodeError',
'ErrorLevelError', 'ModeError', 'MaskError', 'VersionError',
Expand Down
212 changes: 44 additions & 168 deletions segno/consts.py

Large diffs are not rendered by default.

0 comments on commit 489ae1a

Please sign in to comment.