Skip to content

Commit be842f5

Browse files
radaretrufae
authored andcommitted
Release 6.0.2
1 parent f675197 commit be842f5

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

configure

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ done
113113
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
114114
: ${INSTALL_MAN:=${INSTALL} -m 444}
115115
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
116-
PKGNAME='r2frida' ; VERSION='6.0.0' ; VERSION_MAJOR=6; VERSION_MINOR=0; VERSION_PATCH=0; VERSION_NUMBER=60000; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nowsecure.com>" ;
116+
PKGNAME='r2frida' ; VERSION='6.0.2' ; VERSION_MAJOR=6; VERSION_MINOR=0; VERSION_PATCH=2; VERSION_NUMBER=60002; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nowsecure.com>" ;
117117
}
118118

119119
show_usage() {
120120
cat <<EOF2
121-
'configure' configures r2frida-6.0.0 to adapt to many kinds of systems.
121+
'configure' configures r2frida-6.0.2 to adapt to many kinds of systems.
122122
123123
Usage: ./configure [OPTION]... [VAR=VALUE]...
124124
@@ -200,10 +200,10 @@ ocho() {
200200

201201
show_version() {
202202
if [ "$QUIET" = 1 ]; then
203-
echo "6.0.0"
203+
echo "6.0.2"
204204
exit 0
205205
fi
206-
echo "r2frida-6.0.0 configuration script done with acr v2.2.2.
206+
echo "r2frida-6.0.2 configuration script done with acr v2.2.2.
207207
The 'Free Software Foundation' message is only for autodetection.
208208
Originally written by pancake <nopcode.org>."
209209
exit 0
@@ -232,7 +232,7 @@ case $flag in
232232
show_version ; ;;
233233
-r|--r|--report)
234234
echo "PKGNAME: r2frida"
235-
echo "VERSION: 6.0.0"
235+
echo "VERSION: 6.0.2"
236236
echo "AUTHOR: pancake"
237237
echo "EMAIL: pancake@nowsecure.com"
238238
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 r2frida
2-
VERSION 6.0.0
2+
VERSION 6.0.2
33
CONTACT pancake ; pancake@nowsecure.com
44

55
USE_PKGCONFIG!

configure.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@echo OFF
22
setlocal
3-
set "R2V=6.0.0"
3+
set "R2V=6.0.2"
44
set "R2ZIP=https://github.com/radareorg/radare2/releases/download/%R2V%/radare2-%R2V%-w64.zip"
55
set "R2DIR=radare2"
66

make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
REM setlocal EnableDelayedExpansion
33
set frida_version=17.2.15
4-
set r2frida_version=6.0.0
4+
set r2frida_version=6.0.2
55
if "%PLATFORM%" == "x64" (set frida_os_arch=x86_64) else (set frida_os_arch=x86)
66
set DEBUG=/O2
77

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "r2frida-agent",
3-
"version": "6.0.0",
3+
"version": "6.0.2",
44
"description": "Agent for frida:// io plugin",
55
"private": true,
66
"type": "module",

src/agent/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export interface R2FridaPlugin {
5959
}
6060

6161
export const r2frida: R2FridaPlugin = {
62-
version: "6.0.0",
62+
version: "6.0.2",
6363
commandHandler: commandHandler,
6464
pluginRegister: pluginRegister,
6565
pluginUnregister: pluginUnregister,

0 commit comments

Comments
 (0)