Skip to content

Commit a60d2bc

Browse files
committed
Fix documentation bug.
1 parent 3ae0f8f commit a60d2bc

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v1.10.2
4+
5+
Fix documentation bug.
36

47
## v1.10.1
58

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,19 +263,19 @@ Top to bottom (default)::
263263

264264
.. image:: https://raw.githubusercontent.com/thebjorn/pydeps/master/docs/_static/pydeps-rankdir-tb.svg?sanitize=true
265265

266-
Bottom to top (default)::
266+
Bottom to top::
267267

268268
shell> pydeps pydeps --rankdir BT
269269

270270
.. image:: https://raw.githubusercontent.com/thebjorn/pydeps/master/docs/_static/pydeps-rankdir-bt.svg?sanitize=true
271271

272-
Left to right (default)::
272+
Left to right::
273273

274274
shell> pydeps pydeps --rankdir LR
275275

276276
.. image:: https://raw.githubusercontent.com/thebjorn/pydeps/master/docs/_static/pydeps-rankdir-lr.svg?sanitize=true
277277

278-
Right to left (default)::
278+
Right to left::
279279

280280
shell> pydeps pydeps --rankdir RL
281281

dkbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ _schema: https://static.datakortet.no/schema/dkbuild.schema.yaml
33
package:
44
name: pydeps
55
description: Display module dependencies
6-
version: 1.10.1
6+
version: 1.10.2
77
created: 2014
88

99
build:

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = '1.10.1'
57+
version = '1.10.2'
5858
# The full version, including alpha/beta/rc tags.
59-
release = '1.10.1'
59+
release = '1.10.2'
6060

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

pydeps/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Python module dependency visualization. This package installs the ``pydeps``
44
command, and normal usage will be to use it from the command line.
55
"""
6-
__version__ = "1.10.1"
6+
__version__ = "1.10.2"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import setuptools
1111
from setuptools.command.test import test as TestCommand
1212

13-
version='1.10.1'
13+
version='1.10.2'
1414

1515

1616
class PyTest(TestCommand):

0 commit comments

Comments
 (0)