Skip to content

Commit be87c58

Browse files
committed
Release 1.3.0
1 parent 09fd765 commit be87c58

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

configure

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ done
126126
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
127127
: ${INSTALL_MAN:=${INSTALL} -m 444}
128128
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
129-
PKGNAME='r2mcp' ; VERSION='1.2.0' ; VERSION_MAJOR=1; VERSION_MINOR=2; VERSION_PATCH=0; VERSION_NUMBER=10200; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
129+
PKGNAME='r2mcp' ; VERSION='1.3.0' ; VERSION_MAJOR=1; VERSION_MINOR=3; VERSION_PATCH=0; VERSION_NUMBER=10300; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
130130
}
131131

132132
show_usage() {
133133
cat <<EOF2
134-
'configure' configures r2mcp-1.2.0 to adapt to many kinds of systems.
134+
'configure' configures r2mcp-1.3.0 to adapt to many kinds of systems.
135135
136136
Usage: ./configure [OPTION]... [VAR=VALUE]...
137137
@@ -208,10 +208,10 @@ ocho() {
208208

209209
show_version() {
210210
if [ "$QUIET" = 1 ]; then
211-
echo "1.2.0"
211+
echo "1.3.0"
212212
exit 0
213213
fi
214-
echo "r2mcp-1.2.0 configuration script done with acr v2.2.4.
214+
echo "r2mcp-1.3.0 configuration script done with acr v2.2.4.
215215
The 'Free Software Foundation' message is only for autodetection.
216216
Originally written by pancake <nopcode.org>."
217217
exit 0
@@ -240,7 +240,7 @@ case $flag in
240240
show_version ; ;;
241241
-r|--r|--report)
242242
echo "PKGNAME: r2mcp"
243-
echo "VERSION: 1.2.0"
243+
echo "VERSION: 1.3.0"
244244
echo "AUTHOR: pancake"
245245
echo "EMAIL: pancake@nopcode.org"
246246
echo "LANGS: c"

configure.acr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKGNAME r2mcp
2-
VERSION 1.2.0
2+
VERSION 1.3.0
33
CONTACT pancake ; pancake@nopcode.org
44

55
LANG_C!

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'r2mcp',
33
'c',
4-
version : '1.2.0',
4+
version : '1.3.0',
55
default_options : ['warning_level=2', 'c_std=c11']
66
)
77

src/prompts.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ typedef struct {
216216
void prompts_registry_init(ServerState *ss) {
217217
if (ss->prompts) return;
218218
PromptRegistry *reg = R_NEW0 (PromptRegistry);
219-
if (!reg) return;
220219
reg->list = r_list_new ();
221220
if (!reg->list) {
222221
free (reg);

src/r2mcp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/* Version fallback if not provided by build */
99
#ifndef R2MCP_VERSION
10-
#define R2MCP_VERSION "1.2.0"
10+
#define R2MCP_VERSION "1.3.0"
1111
#endif
1212

1313
typedef struct {

0 commit comments

Comments
 (0)