Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbrodersen committed Dec 11, 2023
1 parent 1c5cdae commit 89d37ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ Bibtex entry:

## Recent changes

- 4.13.1 Improved initialization of `k` parameter in `get_fruchterman_reingold_layout` (issue #79).
- 4.13.0 Wrote an article on Netgraph for the Journal of Open Source Software (latest draft in /publication).
- 4.12.12 Expanded the documentation to cover installation of optional dependencies, automated testing, and troubleshooting issues with Matplotlib event handling (issue #69).
- 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).
Expand Down
2 changes: 1 addition & 1 deletion netgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
>>> help(EditableGraph)
"""

__version__ = "4.13.0"
__version__ = "4.13.1"
__author__ = "Paul Brodersen"
__email__ = "[email protected]"

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 @@ def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
return file.read()

version = '4.13.0'
version = '4.13.1'

setup(
name='netgraph',
Expand Down

0 comments on commit 89d37ae

Please sign in to comment.