From 8abf618553f9c74a898c816d9187269d4315d56d Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Wed, 13 Dec 2023 09:20:16 -0800 Subject: [PATCH] Bump to 0.7.0.dev0 --- src/deephaven/plugin/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deephaven/plugin/__init__.py b/src/deephaven/plugin/__init__.py index 57dac1b..c4f868e 100644 --- a/src/deephaven/plugin/__init__.py +++ b/src/deephaven/plugin/__init__.py @@ -5,7 +5,7 @@ The deephaven.plugin module provides an API and registration mechanism to add new behavior to the Deephaven server. Plugins should be registered by adding a Registration instance as an entrypoint to the Python package. """ -__version__ = "0.6.0" +__version__ = "0.7.0.dev0" DEEPHAVEN_PLUGIN_ENTRY_KEY = "deephaven.plugin" DEEPHAVEN_PLUGIN_REGISTRATION_CLASS = "registration_cls"