From b791fd837775547309b96d6458f8d496bbda5549 Mon Sep 17 00:00:00 2001 From: mikebender Date: Tue, 4 Aug 2026 11:04:47 -0400 Subject: [PATCH] Bump to v0.8.0 --- 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 cb9e371..9342cc2 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.0.dev0" +__version__ = "0.8.0" DEEPHAVEN_PLUGIN_ENTRY_KEY = "deephaven.plugin" DEEPHAVEN_PLUGIN_REGISTRATION_CLASS = "registration_cls"