From 6c18bff575a9db0bd926ff35ae2ef1ccaa85fc79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kyle=20=F0=9F=90=86?= Date: Mon, 16 Feb 2026 10:57:28 -0500 Subject: [PATCH] Bump version to 0.2.0 --- components/secp256k1-frost/idf_component.yml | 2 +- main/main.c | 2 +- main/protocol.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/secp256k1-frost/idf_component.yml b/components/secp256k1-frost/idf_component.yml index b860a9c..f386517 100644 --- a/components/secp256k1-frost/idf_component.yml +++ b/components/secp256k1-frost/idf_component.yml @@ -1,4 +1,4 @@ -version: "0.1.1" +version: "0.2.0" description: "FROST threshold signatures for ESP32" url: "https://github.com/privkeyio/secp256k1-frost" dependencies: diff --git a/main/main.c b/main/main.c index 6d23fac..822d840 100644 --- a/main/main.c +++ b/main/main.c @@ -25,7 +25,7 @@ #include "self_test.h" #define TAG "main" -#define VERSION "0.1.2" +#define VERSION "0.2.0" #define RATE_LIMIT_THRESHOLD 5 #define RATE_LIMIT_DELAY_MS 1000 diff --git a/main/protocol.h b/main/protocol.h index 1586296..500f6d7 100644 --- a/main/protocol.h +++ b/main/protocol.h @@ -14,7 +14,7 @@ #define PROTOCOL_MAX_GROUP_LEN 64 #define PROTOCOL_MAX_HEX_LEN 512 #define PROTOCOL_MAX_PSBT_LEN 8192 -#define PROTOCOL_VERSION "0.1.2" +#define PROTOCOL_VERSION "0.2.0" #define PROTOCOL_API_VERSION 1 #define PROTOCOL_MAX_PARTICIPANTS 16 #define PROTOCOL_COMMITMENT_HEX_LEN 264