diff --git a/CHANGELOG.md b/CHANGELOG.md index aac126d9..88186509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.25.13] 2025-12-09 + +### Fix +- Fix not working '-p' option (Use production public key for PKI) + ## [0.25.12] 2025-12-08 ### Fix diff --git a/src/launcher.c b/src/launcher.c index 3fb833b0..fa716990 100644 --- a/src/launcher.c +++ b/src/launcher.c @@ -788,7 +788,7 @@ int main(int argc, char *argv[]) fprintf(stderr, "[*] speculos launcher revision: " GIT_REVISION "\n"); - while ((opt = getopt(argc, argv, "c:tr:s:m:k:a:f:p:l:")) != -1) { + while ((opt = getopt(argc, argv, "c:tr:s:m:k:a:f:pl:")) != -1) { switch (opt) { case 'f': fonts_path = optarg;