GP-4487: Increment TraceRMI to version 11.1

This commit is contained in:
Dan 2024-04-23 11:17:42 -04:00
parent b9ebd7c83d
commit b9a23d3b50
5 changed files with 12 additions and 8 deletions

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "ghidradbg"
version = "10.4"
version = "11.1"
authors = [
{ name="Ghidra Development Team" },
]
@ -17,7 +17,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"ghidratrace==10.4",
"ghidratrace==11.1",
"pybag>=2.2.10"
]

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "ghidragdb"
version = "10.4"
version = "11.1"
authors = [
{ name="Ghidra Development Team" },
]
@ -17,7 +17,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"ghidratrace==10.4",
"ghidratrace==11.1",
]
[project.urls]

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "ghidralldb"
version = "10.4"
version = "11.1"
authors = [
{ name="Ghidra Development Team" },
]
@ -17,7 +17,7 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"ghidratrace==10.4",
"ghidratrace==11.1",
]
[project.urls]

View file

@ -69,7 +69,7 @@ import ghidra.util.exception.CancelledException;
import ghidra.util.exception.DuplicateFileException;
public class TraceRmiHandler implements TraceRmiConnection {
public static final String VERSION = "10.4";
public static final String VERSION = "11.1";
protected static class VersionMismatchError extends TraceRmiError {
public VersionMismatchError(String remote) {

View file

@ -30,7 +30,11 @@ from .util import send_delimited, recv_delimited
# This need not be incremented every Ghidra release. When a breaking protocol
# change is made, this should be updated to match the first Ghidra release that
# includes the change.
VERSION = '10.4'
#
# Other places to change:
# * every pyproject.toml file (incl. deps)
# * TraceRmiHandler.VERSION
VERSION = '11.1'
class RemoteResult(Future):