Skip to content

Commit 89d37ae

Browse files
committed
Bump version
1 parent 1c5cdae commit 89d37ae

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ Bibtex entry:
125125

126126
## Recent changes
127127

128+
- 4.13.1 Improved initialization of `k` parameter in `get_fruchterman_reingold_layout` (issue #79).
128129
- 4.13.0 Wrote an article on Netgraph for the Journal of Open Source Software (latest draft in /publication).
129130
- 4.12.12 Expanded the documentation to cover installation of optional dependencies, automated testing, and troubleshooting issues with Matplotlib event handling (issue #69).
130131
- 4.12.11 Mitigated a bug in `EditableGraph` that occurred when deleting a node while hovering over an edge incident to that node (issue #66).

netgraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
>>> help(EditableGraph)
9999
"""
100100

101-
__version__ = "4.13.0"
101+
__version__ = "4.13.1"
102102
__author__ = "Paul Brodersen"
103103
__email__ = "[email protected]"
104104

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def read_file(filename):
66
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
77
return file.read()
88

9-
version = '4.13.0'
9+
version = '4.13.1'
1010

1111
setup(
1212
name='netgraph',

0 commit comments

Comments
 (0)