Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/gl-client-py/glclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


# Keep in sync with the libhsmd version, this is tested in unit tests.
__version__ = "v25.12"
__version__ = "v26.06"


E = TypeVar("E", bound=PbMessage)
Expand Down
2 changes: 1 addition & 1 deletion libs/gl-client/src/signer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pub mod model;
mod report;
mod resolve;

const VERSION: &str = "v25.12";
const VERSION: &str = "v26.06";
const GITHASH: &str = env!("GIT_HASH");
const RUNE_VERSION: &str = "gl0";
// This is the same derivation key that is used by core lightning itself.
Expand Down
2 changes: 2 additions & 0 deletions libs/gl-testing/gltesting/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def is_compat(self, nv: NodeVersion) -> bool:
"v24.11": ["v24.11gl1"],
"v25.05": ["v25.05gl1"],
"v25.12": ["v25.12gl1"],
"v26.06": ["v25.12gl1", "v26.06gl1"],
}

return self.name in compat[nv.name]
Expand All @@ -41,6 +42,7 @@ def get_node_version(self):
"v24.11": "v24.11gl1",
"v25.05": "v25.05gl1",
"v25.12": "v25.12gl1",
"v26.06": "v26.06gl1",
}
return m[self.name]

Expand Down
Loading