Skip to content

Commit

Permalink
version bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nschloe committed Oct 12, 2015
1 parent c306dd0 commit 1446325
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = '0.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions matplotlib2tikz.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
__email__ = 'nico.schloemer@gmail.com'
__copyright__ = 'Copyright (c) 2010-2015, %s <%s>' % (__author__, __email__)
__credits__ = []
__license__ = 'GNU Lesser General Public License (LGPL), Version 3'
__version__ = '0.1.0'
__license__ = 'MIT License'
__version__ = '0.2.0'
__maintainer__ = 'Nico Schlömer'
__status__ = 'Development'
__status__ = 'Production'


def save(filepath,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
import pypandoc

from matplotlib2tikz import __version__
from matplotlib2tikz import __version__, __license__

longdesc = pypandoc.convert(
os.path.join(os.path.dirname(os.path.realpath(__file__)), 'README.md'),
Expand All @@ -22,7 +22,7 @@
requires=['matplotlib (>=1.4.0)', 'numpy'],
description='convert matplotlib figures into TikZ/PGFPlots',
long_description=longdesc,
license='MIT License',
license=__license__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 1446325

Please sign in to comment.