Skip to content

Commit

Permalink
Release 5.2.1 with minor CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed May 18, 2021
1 parent 41a42a4 commit ceab638
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ r2frida
Radare2 and Frida better together.


[![Build](https://travis-ci.com/nowsecure/r2frida.svg?branch=master)](https://travis-ci.com/nowsecure/r2frida)
[![ci](https://github.com/nowsecure/r2frida/actions/workflows/ci.yml/badge.svg)](https://github.com/nowsecure/r2frida/actions/workflows/ci.yml)

![logo](r2frida.png)

Expand Down
4 changes: 4 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ if [ -n "$1" ]; then
echo "./configure $*"
./configure $*
fi

V=`./configure -qV`
jq ".version=\"$V\"" package.json > p
mv p package.json
10 changes: 5 additions & 5 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='r2frida' ; VERSION='5.2.0' ; VERSION_MAJOR=5; VERSION_MINOR=2; VERSION_PATCH=0; VERSION_NUMBER=50200; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='r2frida' ; VERSION='5.2.1' ; VERSION_MAJOR=5; VERSION_MINOR=2; VERSION_PATCH=1; VERSION_NUMBER=50201; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

show_usage() {
cat <<EOF2
'configure' configures r2frida-5.2.0 to adapt to many kinds of systems.
'configure' configures r2frida-5.2.1 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -191,10 +191,10 @@ ocho() {

show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.2.0"
echo "5.2.1"
exit 0
fi
echo "r2frida-5.2.0 configuration script done with acr v1.9.8.
echo "r2frida-5.2.1 configuration script done with acr v1.9.8.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
Expand Down Expand Up @@ -223,7 +223,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: r2frida"
echo "VERSION: 5.2.0"
echo "VERSION: 5.2.1"
echo "LANGS: c"
echo "PKG-CONFIG: r_core"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion configure.acr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKGNAME r2frida
VERSION 5.2.0
VERSION 5.2.1
CONTACT pancake ; [email protected]

USE_PKGCONFIG!
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "r2frida-agent",
"version": "5.2.0",
"version": "5.2.1",
"description": "Agent for frida:// io plugin",
"private": true,
"main": "src/agent/index.js",
Expand Down

0 comments on commit ceab638

Please sign in to comment.