From 08fd3f7da8067711a9c8e19b95c79aa4dcd03bc9 Mon Sep 17 00:00:00 2001 From: Jordan Matelsky Date: Tue, 11 Oct 2022 14:44:50 -0400 Subject: [PATCH] Update version to 0.13.0 --- CHANGELOG.md | 3 ++- dotmotif/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57a324d..6378cac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ # Changelog -- **?.?.?** (Unreleased) +- **0.13.0** (October 11 2022) - Features: - Introduced propagation of constraints when nodes are explicitly marked as automorphic to one another. - Nested lookup support for JSON attributes of neuPrint datasets ([thanks @jakobtroidl!](https://github.com/aplbrain/dotmotif/pull/128)) + - Allow users to specify EdgelistIngest column data types - **0.12.0** (June 7 2022) - Housekeeping: - Removed old, deprecated code like the v1 parser (deprecated in `v0.5.0`) and some unused ingest tools (#113) diff --git a/dotmotif/__init__.py b/dotmotif/__init__.py index 9c69ca1..f374604 100644 --- a/dotmotif/__init__.py +++ b/dotmotif/__init__.py @@ -30,7 +30,7 @@ from .executors.NetworkXExecutor import NetworkXExecutor from .executors.GrandIsoExecutor import GrandIsoExecutor -__version__ = "0.12.0" +__version__ = "0.13.0" DEFAULT_MOTIF_PARSER = ParserV2 diff --git a/setup.py b/setup.py index f5e231d..0b010a0 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ twine upload dist/* """ -VERSION = "0.12.0" +VERSION = "0.13.0" here = os.path.abspath(os.path.dirname(__file__)) with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f: