From b3534e6eee0661d59b0e8035e55c089721abb52d Mon Sep 17 00:00:00 2001 From: Didactyl User Date: Fri, 10 Jul 2026 19:18:43 -0400 Subject: [PATCH] v0.2.53 - Add signer_health.c to Dockerfile.alpine-musl source list (was missing, causing static build failure) --- Dockerfile.alpine-musl | 2 +- README.md | 4 ++-- src/main.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile.alpine-musl b/Dockerfile.alpine-musl index 944180a..042defe 100644 --- a/Dockerfile.alpine-musl +++ b/Dockerfile.alpine-musl @@ -123,7 +123,7 @@ RUN NOSTR_LIB=$(ls /build/nostr_core_lib/libnostr_core_*.a 2>/dev/null | head -1 src/tools/tool_task.c src/tools/tool_nostr_list.c src/tools/tool_nostr_block.c src/tools/tool_local.c \ src/tools/tool_skill.c src/tools/tool_nostr_post.c src/tools/tool_memory.c src/tools/tool_config.c src/tools/tool_cashu_wallet.c src/tools/tool_blossom.c src/trigger_manager.c \ src/cashu_wallet.c src/nostr_block_list.c src/prompt_template.c src/http_api.c src/setup_wizard.c src/mongoose.c src/debug.c \ - src/json_to_markdown.c src/context_roles.c src/context_format.c \ + src/json_to_markdown.c src/context_roles.c src/context_format.c src/signer_health.c \ -o /build/didactyl_static \ $NOSTR_LIB \ -lsecp256k1 \ diff --git a/README.md b/README.md index 75e7520..8efa9d4 100644 --- a/README.md +++ b/README.md @@ -54,11 +54,11 @@ Skills compose by adoption-list order (`10123`) and trigger tags carry runtime e Didactyl will support local inference, which is very privacy preserving. Remote inference does however have it's advantages, and in those cases Didactyl supports using Bitcoin Lightning and eCash inference providers. -## Current Status — v0.2.52 +## Current Status — v0.2.53 **Active build — this project is barely working. Experiment at your own risk.** -> Last release update: v0.2.52 — Fix trigger manager bypassing skill adoption list — cron/webhook triggers now only fire for adopted and enabled skills +> Last release update: v0.2.53 — Add signer_health.c to Dockerfile.alpine-musl source list (was missing, causing static build failure) - Connects to configured relays with auto-reconnect and relay state transition logging - Publishes configured startup events per relay as each relay becomes connected diff --git a/src/main.h b/src/main.h index 456a8c5..dbe624c 100644 --- a/src/main.h +++ b/src/main.h @@ -12,8 +12,8 @@ // Using DIDACTYL_ prefix to avoid conflicts with nostr_core_lib VERSION macros #define DIDACTYL_VERSION_MAJOR 0 #define DIDACTYL_VERSION_MINOR 2 -#define DIDACTYL_VERSION_PATCH 52 -#define DIDACTYL_VERSION "v0.2.52" +#define DIDACTYL_VERSION_PATCH 53 +#define DIDACTYL_VERSION "v0.2.53" // Agent metadata #define DIDACTYL_NAME "Didactyl"