From 58f22316bd0ff6a90647e39a35f0fe78a0671c8c Mon Sep 17 00:00:00 2001 From: Teal Bauer Date: Thu, 22 May 2025 09:12:10 +0200 Subject: [PATCH] chore: Bump version identifiers --- bridge_mcp_hydra.py | 4 ++-- src/main/java/eu/starsong/ghidra/api/ApiConstants.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bridge_mcp_hydra.py b/bridge_mcp_hydra.py index cb36703..8d428bb 100644 --- a/bridge_mcp_hydra.py +++ b/bridge_mcp_hydra.py @@ -34,8 +34,8 @@ QUICK_DISCOVERY_RANGE = range(DEFAULT_GHIDRA_PORT, DEFAULT_GHIDRA_PORT+10) FULL_DISCOVERY_RANGE = range(DEFAULT_GHIDRA_PORT, DEFAULT_GHIDRA_PORT+20) # Version information -BRIDGE_VERSION = "v2.0.0-beta.1" -REQUIRED_API_VERSION = 2 +BRIDGE_VERSION = "v2.0.0-beta.3" +REQUIRED_API_VERSION = 2003 instructions = """ GhydraMCP allows interacting with multiple Ghidra SRE instances. Ghidra SRE is a tool for reverse engineering and analyzing binaries, e.g. malware. diff --git a/src/main/java/eu/starsong/ghidra/api/ApiConstants.java b/src/main/java/eu/starsong/ghidra/api/ApiConstants.java index 3453ad6..20e566e 100644 --- a/src/main/java/eu/starsong/ghidra/api/ApiConstants.java +++ b/src/main/java/eu/starsong/ghidra/api/ApiConstants.java @@ -1,8 +1,8 @@ package eu.starsong.ghidra.api; public class ApiConstants { - public static final String PLUGIN_VERSION = "v2.0.0-beta.1"; - public static final int API_VERSION = 2; + public static final String PLUGIN_VERSION = "v2.0.0-beta.3"; + public static final int API_VERSION = 2003; public static final int DEFAULT_PORT = 8192; public static final int MAX_PORT_ATTEMPTS = 10; }