Skip to content

Commit

Permalink
Version 2.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
liZe committed Apr 30, 2016
1 parent 0f291d4 commit 5c316bd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Deployment tests are already bundled in the cairosvg module
include COPYING NEWS.rst README.rst
exclude test/*.py cairosvg.py
3 changes: 2 additions & 1 deletion NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ Version 2.0, not released yet
* Rely on cairocffi, lxml, cssselect, pillow and tinycss
* Fix markers
* Fix URL/id handling
* Use bounding boxes for gradients
* Split deployment and development tests
* Test CairoSVG with Travis
* Test with Travis


Version 1.0.20, released on 2016-02-23
Expand Down
2 changes: 1 addition & 1 deletion cairosvg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"""

__version__ = '2.0.0a1' # noqa (version is used by relative imports)
__version__ = '2.0.0rc1' # noqa (version is used by relative imports)


import os
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
version = re.search("__version__ = '([^']+)'", fd.read().strip()).group(1)


# When the version is updated, ``cairosvg.VERSION`` must be modified.
# When the version is updated, ``cairosvg.__version__`` must be modified.
# A new section in the ``NEWS`` file must be added too.
setup(
name='CairoSVG',
Expand All @@ -48,7 +48,7 @@
'License :: OSI Approved :: '
'GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Graphics :: Graphics Conversion'])

0 comments on commit 5c316bd

Please sign in to comment.