From 7958980bb5be1ba8cf5077ad71b8bdf2e24bc45f Mon Sep 17 00:00:00 2001 From: "Charles P. Wright" Date: Fri, 26 Jun 2026 13:54:33 -0400 Subject: [PATCH 1/2] Bump to 0.8.0dev --- 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 4c4f80e..0e9b82a 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.7.0" +__version__ = "0.8.0dev" DEEPHAVEN_PLUGIN_ENTRY_KEY = "deephaven.plugin" DEEPHAVEN_PLUGIN_REGISTRATION_CLASS = "registration_cls" From 5e5cd072b4e9deceda3c970a34df0e183e70025a Mon Sep 17 00:00:00 2001 From: "Charles P. Wright" Date: Fri, 26 Jun 2026 13:57:58 -0400 Subject: [PATCH 2/2] fix format --- 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 0e9b82a..cb9e371 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.8.0dev" +__version__ = "0.8.0.dev0" DEEPHAVEN_PLUGIN_ENTRY_KEY = "deephaven.plugin" DEEPHAVEN_PLUGIN_REGISTRATION_CLASS = "registration_cls"