Skip to content

Commit a94d3f2

Browse files
committed
release 2.12.0, URLs point to sagemath
1 parent eff221d commit a94d3f2

7 files changed

Lines changed: 16 additions & 13 deletions

File tree

CHANGES

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ dot2tex change log
33

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

6-
2.12.dev
6+
2.12.0
77
--------
88

99
- Major code refactoring
10+
- Dropped python2
11+
- Fixed deprecations
12+
- Ownership transfer to sagemath
1013

1114
2.11.3
1215
------

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '2.12.dev'
51+
version = '2.12.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '2.12.dev'
53+
release = '2.12.0'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dot2tex - A Graphviz to LaTeX converter
22
=======================================
33

44
:Author: Kjell Magne Fauske
5-
:Version: 2.12.dev
5+
:Version: 2.12.0
66
:Licence: MIT_
77

88

dot2tex/dot2tex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from .pstricksformat import Dot2PSTricksConv, Dot2PSTricksNConv
3232

3333
__author__ = 'Kjell Magne Fauske'
34-
__version__ = '2.12.dev'
34+
__version__ = '2.12.0'
3535
__license__ = 'MIT'
3636

3737
import argparse

dot2tex/dotparsing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Ero Carrera <ero AT dkbza.org>
88
"""
99

10-
__version__ = '2.12.dev'
10+
__version__ = '2.12.0'
1111
__author__ = ['Michael Krause', 'Ero Carrera', 'Kjell Magne Fauske']
1212
__license__ = 'MIT'
1313

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dot2tex - A Graphviz to LaTeX converter
77
88
License: MIT (See LICENSE for details.)
99

10-
Version: 2.12.dev
10+
Version: 2.12.0
1111

12-
URL: https://github.com/xyz2tex/dot2tex
12+
URL: https://github.com/sagemath/dot2tex
1313

1414
Documentation: http://dot2tex.readthedocs.org/
1515

@@ -72,11 +72,11 @@ some extra information in the ``setup.py`` file that distutils does not understa
7272
Development version
7373
-------------------
7474

75-
The development version of ``dot2tex`` is [available on GitHub](https://github.com/kjellmf/dot2tex).
75+
The development version of ``dot2tex`` is [available on GitHub](https://github.com/sagemath/dot2tex).
7676

7777
Contribute
7878
==========
7979

80-
- Issue tracker: https://github.com/kjellmf/dot2tex/issues
81-
- Source code: https://github.com/kjellmf/dot2tex
80+
- Issue tracker: https://github.com/sagemath/dot2tex/issues
81+
- Source code: https://github.com/sagemath/dot2tex
8282

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33

44
setup(name='dot2tex',
5-
version='2.12.dev',
5+
version='2.12.0',
66
description='A Graphviz to LaTeX converter',
77
long_description="""\
88
The purpose of dot2tex is to give graphs generated by the graph layout tool
@@ -19,7 +19,7 @@
1919
""",
2020
author='Kjell Magne Fauske',
2121
author_email='kjellmf@gmail.com',
22-
url="https://github.com/kjellmf/dot2tex",
22+
url="https://github.com/sagemath/dot2tex",
2323
packages=['dot2tex'],
2424
classifiers=[
2525
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)