chore: Bump version identifiers

This commit is contained in:
Teal Bauer 2025-05-22 09:12:10 +02:00
parent 5e1b1d4cbd
commit 58f22316bd
2 changed files with 4 additions and 4 deletions

View File

@ -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) FULL_DISCOVERY_RANGE = range(DEFAULT_GHIDRA_PORT, DEFAULT_GHIDRA_PORT+20)
# Version information # Version information
BRIDGE_VERSION = "v2.0.0-beta.1" BRIDGE_VERSION = "v2.0.0-beta.3"
REQUIRED_API_VERSION = 2 REQUIRED_API_VERSION = 2003
instructions = """ instructions = """
GhydraMCP allows interacting with multiple Ghidra SRE instances. Ghidra SRE is a tool for reverse engineering and analyzing binaries, e.g. malware. GhydraMCP allows interacting with multiple Ghidra SRE instances. Ghidra SRE is a tool for reverse engineering and analyzing binaries, e.g. malware.

View File

@ -1,8 +1,8 @@
package eu.starsong.ghidra.api; package eu.starsong.ghidra.api;
public class ApiConstants { public class ApiConstants {
public static final String PLUGIN_VERSION = "v2.0.0-beta.1"; public static final String PLUGIN_VERSION = "v2.0.0-beta.3";
public static final int API_VERSION = 2; public static final int API_VERSION = 2003;
public static final int DEFAULT_PORT = 8192; public static final int DEFAULT_PORT = 8192;
public static final int MAX_PORT_ATTEMPTS = 10; public static final int MAX_PORT_ATTEMPTS = 10;
} }