Skip to content
Merged
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 components/secp256k1-frost/idf_component.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion main/protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down