Skip to content

Commit

Permalink
Bump version to 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kjellmf committed Mar 15, 2019
1 parent e11b189 commit 0f3ede4
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 16 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Patches and suggestions
- Ero Carrera
- Michael Niedermair
- Ioannis Filippidis
- Travis Scrimshaw



Expand Down
11 changes: 7 additions & 4 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ dot2tex change log

Here you can see the full list of changes between each dot2tex release.

2.11.dev
--------
2.11.0
------

Released 2019-03-15

- Add support for Python 3! Thanks Travis Scrimshaw!
- Added support for Python 3! Thanks Travis Scrimshaw!
- Various bug fixes.

2.10.dev
--------
Expand All @@ -15,7 +18,7 @@ Not released

- Convert input file to output file only if latter is outdated. Can be overridden by the new
--force command line option.
- Replace deprecated opt parse with argparse.
- Replaced deprecated opt parse with argparse.
- Python 2.7.x is now a requirement (due to the use of the argparse module)

2.9.1
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014, Kjell Magne Fauske
Copyright (c) 2019, Kjell Magne Fauske

The dot parser is copyright (c) 2004-2014 Michael Krause and Ero Carrera

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@

# General information about the project.
project = u'dot2tex'
copyright = u'2014, Kjell Magne Fauske'
copyright = u'2019, Kjell Magne Fauske'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '2.9.0'
version = '2.11.0'
# The full version, including alpha/beta/rc tags.
release = '2.9.0'
release = '2.11.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dot2tex - A Graphviz to LaTeX converter
=======================================

:Author: Kjell Magne Fauske
:Version: 2.9.0
:Version: 2.11.0
:Licence: MIT_


Expand Down
3 changes: 1 addition & 2 deletions docs/installation_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Dependencies

The following software and modules are required to run dot2tex:

- Python_ 2.6 or 2.7.
- Python_ 2.7 or 3.x.
- pyparsing_. Version 1.4.8 or later is recommended.
- Graphviz_. A recent version is required.
- preview_. A LaTeX package for extracting parts of a document. A free-standing part of the `preview-latex`_/`AUCTeX`_ bundle.
Expand All @@ -16,7 +16,6 @@ Users have reported problems using dot2tex with old versions of pyparsing and Gr

A natural companion to dot2tex is `the dot2texi LaTeX package <dot2texi_>`_ for embedding graphs directly in your LaTeX source code.

Dot2tex 2.9.x works with Python_ 2.6, but support for 2.6 will be dropped in the next major version.

Using pip or easy_install
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion dot2tex/dot2tex.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# IN THE SOFTWARE.

__author__ = 'Kjell Magne Fauske'
__version__ = '2.11.dev'
__version__ = '2.11.0'
__license__ = 'MIT'

import argparse
Expand Down
2 changes: 1 addition & 1 deletion dot2tex/dotparsing.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Ero Carrera <ero AT dkbza.org>
"""

__version__ = '2.11.dev'
__version__ = '2.11.0'
__author__ = ['Michael Krause', 'Ero Carrera', 'Kjell Magne Fauske']
__license__ = 'MIT'

Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
dot2tex - A Graphviz to LaTeX converter
=======================================

Copyright (C) 2006-2014 Kjell Magne Fauske
Copyright (C) 2006-2019 Kjell Magne Fauske

License: MIT (See LICENSE for details.)

Version: 2.9.0
Version: 2.11.0

URL: https://github.com/kjellmf/dot2tex

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from distutils.core import setup

setup(name='dot2tex',
version='2.11.dev',
version='2.11.0',
description='A Graphviz to LaTeX converter',
long_description="""\
The purpose of dot2tex is to give graphs generated by the graph layout tool
Expand Down

0 comments on commit 0f3ede4

Please sign in to comment.