From e555201737f43f8d3e1027d9e1f8c8c8ab154361 Mon Sep 17 00:00:00 2001 From: Paul Brodersen Date: Wed, 12 Jul 2023 10:23:47 +0100 Subject: [PATCH] Document publication --- README.md | 1 + netgraph/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d37f68..cac118f 100644 --- a/README.md +++ b/README.md @@ -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`). diff --git a/netgraph/__init__.py b/netgraph/__init__.py index 28f7d50..bb11f01 100755 --- a/netgraph/__init__.py +++ b/netgraph/__init__.py @@ -98,7 +98,7 @@ >>> help(EditableGraph) """ -__version__ = "4.12.12" +__version__ = "4.13.0" __author__ = "Paul Brodersen" __email__ = "paulbrodersen+netgraph@gmail.com" diff --git a/setup.py b/setup.py index 8133eac..09dd1dd 100644 --- a/setup.py +++ b/setup.py @@ -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',