Skip to content

Commit

Permalink
Release 5.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jul 2, 2022
1 parent 1252cbf commit 270c6f4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
@@ -1,7 +1,7 @@
name: ci

env:
R2V: 5.7.0
R2V: 5.7.2

on:
push:
Expand Down
10 changes: 5 additions & 5 deletions configure
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='r2ghidra' ; VERSION='5.7.0' ; VERSION_MAJOR=5; VERSION_MINOR=7; VERSION_PATCH=0; VERSION_NUMBER=50700; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
PKGNAME='r2ghidra' ; VERSION='5.7.2' ; VERSION_MAJOR=5; VERSION_MINOR=7; VERSION_PATCH=2; VERSION_NUMBER=50702; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
}

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

show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.7.0"
echo "5.7.2"
exit 0
fi
echo "r2ghidra-5.7.0 configuration script done with acr v2.0.0.
echo "r2ghidra-5.7.2 configuration script done with acr v2.0.0.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
Expand Down Expand Up @@ -218,7 +218,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: r2ghidra"
echo "VERSION: 5.7.0"
echo "VERSION: 5.7.2"
echo "LANGS: c++"
echo "PKG-CONFIG: r_core r_asm r_anal"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion configure.acr
@@ -1,5 +1,5 @@
PKGNAME r2ghidra
VERSION 5.7.0
VERSION 5.7.2
CONTACT pancake ; pancake@nopcode.org

LANG_CXX!
Expand Down
8 changes: 4 additions & 4 deletions meson.build
@@ -1,10 +1,10 @@
project(
'r2ghidra',
['c', 'cpp'],
license : 'LGPL3',
meson_version : '>=0.50.1',
version : '5.7.0',
default_options : ['c_std=c11', 'cpp_std=c++11']
license : 'LGPL3',
meson_version : '>=0.50.1',
version : '5.7.2',
default_options : ['c_std=c11', 'cpp_std=c++11']
)

pugixml_sources = [
Expand Down
2 changes: 1 addition & 1 deletion src/anal_ghidra_plugin.c
Expand Up @@ -18,7 +18,7 @@ static RAnalPlugin r_anal_plugin_ghidra = {
.license = "GPL3",
.arch = "sleigh",
.author = "FXTi, pancake",
.version = "5.7.0",
.version = R2_VERSION,
#if R2_VERSION_NUMBER >= 50609
.endian = R_SYS_ENDIAN_LITTLE | R_SYS_ENDIAN_BIG,
#endif
Expand Down

0 comments on commit 270c6f4

Please sign in to comment.