Skip to content

Commit

Permalink
Release 5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Feb 2, 2022
1 parent c20c962 commit e9e600a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
[![Latest packaged version](https://repology.org/badge/latest-versions/radare2.svg)](https://repology.org/project/radare2/versions) [![Tests Status](https://github.com/radareorg/radare2/workflows/CI/badge.svg?branch=master)](https://github.com/radareorg/radare2/actions/workflows/ci.yml?query=branch%3Amaster) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/741/badge)](https://bestpractices.coreinfrastructure.org/projects/741) [![Build Status](https://scan.coverity.com/projects/416/badge.svg)](https://scan.coverity.com/projects/416) [![Total alerts](https://img.shields.io/lgtm/alerts/g/radareorg/radare2.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/radareorg/radare2/alerts/)

See the [Releases](https://github.com/radareorg/radare2/releases) page for
binary downloads. The current git `master` branch is `5.5.5`, and the next
release will be `5.6.0`.
binary downloads. The current git `master` branch is `5.6.1`, and the next
major release will be `5.7.0`.

r2 is a complete rewrite of radare. It provides a set of libraries, tools and
plugins to ease reverse engineering tasks.
Expand Down
10 changes: 5 additions & 5 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='radare2' ; VERSION='5.5.5' ; VERSION_MAJOR=5; VERSION_MINOR=5; VERSION_PATCH=5; VERSION_NUMBER=50505; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='radare2' ; VERSION='5.6.0' ; VERSION_MAJOR=5; VERSION_MINOR=6; VERSION_PATCH=0; VERSION_NUMBER=50600; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

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

show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.5.5"
echo "5.6.0"
exit 0
fi
echo "radare2-5.5.5 configuration script done with acr v1.9.9.
echo "radare2-5.6.0 configuration script done with acr v1.9.9.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
Expand Down Expand Up @@ -274,7 +274,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: radare2"
echo "VERSION: 5.5.5"
echo "VERSION: 5.6.0"
echo "LANGS: c"
echo "REQUIRED: libdl"
echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv>=1.0.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 radare2
VERSION 5.5.5
VERSION 5.6.0
CONTACT pancake ; [email protected]

LANG_C!
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.5.5')
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.6.0')

py3_exe = import('python').find_installation('python3')
git_exe = find_program('git', required: false)
Expand Down

0 comments on commit e9e600a

Please sign in to comment.