mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-4487: Increment TraceRMI to version 11.1
This commit is contained in:
parent
b9ebd7c83d
commit
b9a23d3b50
5 changed files with 12 additions and 8 deletions
|
@ -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"
|
||||
]
|
||||
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue