Skip to content

Commit

Permalink
Document publication
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbrodersen committed Jul 12, 2023
1 parent 2975e76 commit e555201
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 @@ -105,6 +105,7 @@ help(EditableGraph)

## Recent changes

- 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).
- 4.12.10 Fixed a bug with automatic node label rescaling if the node label fontsize was specified using the `fontsize` keyword argument (instead of just `size`).
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.12.12"
__version__ = "4.13.0"
__author__ = "Paul Brodersen"
__email__ = "paulbrodersen+netgraph@gmail.com"

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.12.12'
version = '4.13.0'

setup(
name='netgraph',
Expand Down

0 comments on commit e555201

Please sign in to comment.