From 0f35614f7c0d89ee02f37d16d5ab3e1994c6de6b Mon Sep 17 00:00:00 2001 From: Kjell Magne Fauske Date: Fri, 15 Mar 2019 19:31:31 +0100 Subject: [PATCH] Fix invalid entry point in setup.py and bump version to 2.11.1 --- CHANGES | 7 +++++++ docs/conf.py | 4 ++-- docs/index.rst | 2 +- dot2tex/dot2tex.py | 2 +- dot2tex/dotparsing.py | 2 +- readme.md | 2 +- setup.py | 4 ++-- 7 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 02323af..86c0e21 100644 --- a/CHANGES +++ b/CHANGES @@ -3,6 +3,13 @@ dot2tex change log Here you can see the full list of changes between each dot2tex release. +2.11.1 +------ + +Released 2019-03-15 + +- Fix bug in setup.py entry_points. + 2.11.0 ------ diff --git a/docs/conf.py b/docs/conf.py index 82a5756..4176cd7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '2.11.0' +version = '2.11.1' # The full version, including alpha/beta/rc tags. -release = '2.11.0' +release = '2.11.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 7f78b91..f28ec32 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,7 +2,7 @@ dot2tex - A Graphviz to LaTeX converter ======================================= :Author: Kjell Magne Fauske -:Version: 2.11.0 +:Version: 2.11.1 :Licence: MIT_ diff --git a/dot2tex/dot2tex.py b/dot2tex/dot2tex.py index 80286b0..f12611e 100644 --- a/dot2tex/dot2tex.py +++ b/dot2tex/dot2tex.py @@ -29,7 +29,7 @@ # IN THE SOFTWARE. __author__ = 'Kjell Magne Fauske' -__version__ = '2.11.0' +__version__ = '2.11.1' __license__ = 'MIT' import argparse diff --git a/dot2tex/dotparsing.py b/dot2tex/dotparsing.py index 66ca21b..756c16a 100644 --- a/dot2tex/dotparsing.py +++ b/dot2tex/dotparsing.py @@ -8,7 +8,7 @@ Ero Carrera """ -__version__ = '2.11.0' +__version__ = '2.11.1' __author__ = ['Michael Krause', 'Ero Carrera', 'Kjell Magne Fauske'] __license__ = 'MIT' diff --git a/readme.md b/readme.md index ecb01ad..4504d71 100644 --- a/readme.md +++ b/readme.md @@ -5,7 +5,7 @@ Copyright (C) 2006-2019 Kjell Magne Fauske License: MIT (See LICENSE for details.) -Version: 2.11.0 +Version: 2.11.1 URL: https://github.com/kjellmf/dot2tex diff --git a/setup.py b/setup.py index 6af6b2b..3e1e7ae 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from distutils.core import setup setup(name='dot2tex', - version='2.11.0', + version='2.11.1', description='A Graphviz to LaTeX converter', long_description="""\ The purpose of dot2tex is to give graphs generated by the graph layout tool @@ -46,7 +46,7 @@ install_requires=['pyparsing'], entry_points={ 'console_scripts': [ - 'dot2tex = dot2tex:main', + 'dot2tex = dot2tex.dot2tex:main', ] }