From 13563abcc1a0e286f7da03af6116444547c37b35 Mon Sep 17 00:00:00 2001 From: ThePedroo Date: Fri, 17 May 2024 02:54:33 -0300 Subject: [PATCH] update: CogLink version This commit updates CogLink version for a release. --- Doxyfile | 2 +- lib/websocket.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doxyfile b/Doxyfile index b83a68f..064577d 100644 --- a/Doxyfile +++ b/Doxyfile @@ -2,7 +2,7 @@ DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "CogLink" -PROJECT_NUMBER = v3.0.0 +PROJECT_NUMBER = v3.0.1 PROJECT_BRIEF = diff --git a/lib/websocket.c b/lib/websocket.c index 86986c0..d6c6733 100644 --- a/lib/websocket.c +++ b/lib/websocket.c @@ -400,7 +400,7 @@ int coglink_connect_nodes(struct coglink_client *c_client, struct discord *clien ws_add_header(nodes->array[i].ws, "Num-Shards", c_client->num_shards); ws_add_header(nodes->array[i].ws, "User-Id", bot_id_str); /* NodeLink/FrequenC Client-Name format */ - ws_add_header(nodes->array[i].ws, "Client-Name", "Coglink/3.0.0 (https://github.com/PerformanC/CogLink)"); + ws_add_header(nodes->array[i].ws, "Client-Name", "Coglink/3.0.1 (https://github.com/PerformanC/CogLink)"); ws_add_header(nodes->array[i].ws, "Sec-WebSocket-Protocol", "13"); /* If not set, will be undefined */ io_poller_curlm_add(client->io_poller, nodes->array[i].mhandle, _IO_poller, node_info);