Skip to content

Commit

Permalink
Prepare release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
claudep committed May 18, 2022
1 parent 09dc1e6 commit 628d8a1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,19 @@
ChangeLog
=========

Unreleased
----------
1.3.0 (2022-05-18)
------------------

- Support mmult import from reportlab < 3.5.61 (#316).
- Make zero-length Line, PolyLine and Polygon appear in PDFs when their stroke
value is non-zero (#319).
- ``<symbol>`` nodes now only appears in documents when they are
referenced, not on their initial appearance.
referenced, not on their initial appearance (#328).
- If only rx or ry is defined on a ``<rect>``, the value is used for both.
- Support non-prefixed ``href`` attribute added in SVG 2 (#330).
- Fixed parsing of empty SVG style nodes (#325).
- Handle content of multiple SVG style nodes (#326).
- Better font caching for some font names (#338).

1.2.1 (2022-01-27)
------------------
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ the system command-line. Here is the output from ``svg2pdf -h``::

usage: svg2pdf [-h] [-v] [-o PATH_PAT] [PATH [PATH ...]]

svg2pdf v. 1.2.1
svg2pdf v. x.x.x
A converter from SVG to PDF (via ReportLab Graphics)

positional arguments:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = svglib
version = 1.2.1
version = 1.3.0
description = A pure-Python library for reading and converting SVG
long_description = file: README.rst
keywords =
Expand All @@ -15,7 +15,7 @@ author_email = gherman@darwin.in-berlin.de
license = LGPL 3
license_file = LICENSE.txt
classifiers =
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: End Users/Desktop
Intended Audience :: Developers
Expand Down
4 changes: 2 additions & 2 deletions svglib/svglib.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ def find_font(font_name, weight='normal', style='normal'):
return _fonts_find_font(font_name, weight, style)


__version__ = '1.2.1'
__version__ = '1.3.0'
__license__ = 'LGPL 3'
__author__ = 'Dinu Gherman'
__date__ = '2022-01-27'
__date__ = '2022-05-18'

XML_NS = 'http://www.w3.org/XML/1998/namespace'

Expand Down

0 comments on commit 628d8a1

Please sign in to comment.