From db093ddad7308756e9cf7ee01199f0dca1369872 Mon Sep 17 00:00:00 2001 From: Jordan Matelsky Date: Thu, 30 Sep 2021 15:00:34 -0400 Subject: [PATCH] Prepare to release v0.10.0 --- CHANGELOG.md | 2 +- dotmotif/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cbfa4f..a8ddecb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -- **0.10.0** +- **0.10.0** (September 30 2021) - Features: - `GrandIsoExecutor` and `NetworkXExecutor`: Support for `networkx.MultiGraph` and `networkx.MultiDiGraph` search through the use of the `multigraph_edge_match` executor argument (#107). - Deprecations: diff --git a/dotmotif/__init__.py b/dotmotif/__init__.py index 9ca8e26..7d4525a 100644 --- a/dotmotif/__init__.py +++ b/dotmotif/__init__.py @@ -30,7 +30,7 @@ from .executors.GrandIsoExecutor import GrandIsoExecutor from .executors.Neo4jExecutor import Neo4jExecutor -__version__ = "0.9.2" +__version__ = "0.10.0" DEFAULT_MOTIF_PARSER = ParserV2 diff --git a/setup.py b/setup.py index 5d5cd21..d5028da 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ twine upload dist/* """ -VERSION = "0.9.2" +VERSION = "0.10.0" here = os.path.abspath(os.path.dirname(__file__)) with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f: