After release version bump. Expect ABI breaks until 5.7.0 is out

This commit is contained in:
pancake 2022-04-19 01:46:10 +02:00
parent d94100d386
commit 8b81e8fe14
4 changed files with 8 additions and 8 deletions

10
configure vendored
View File

@ -134,12 +134,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s} : ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444} : ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c} : ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='radare2' ; VERSION='5.6.8' ; VERSION_MAJOR=5; VERSION_MINOR=6; VERSION_PATCH=8; VERSION_NUMBER=50608; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ; PKGNAME='radare2' ; VERSION='5.6.9' ; VERSION_MAJOR=5; VERSION_MINOR=6; VERSION_PATCH=9; VERSION_NUMBER=50609; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
} }
show_usage() { show_usage() {
cat <<EOF2 cat <<EOF2
'configure' configures radare2-5.6.8 to adapt to many kinds of systems. 'configure' configures radare2-5.6.9 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]... Usage: ./configure [OPTION]... [VAR=VALUE]...
@ -244,10 +244,10 @@ ocho() {
show_version() { show_version() {
if [ "$QUIET" = 1 ]; then if [ "$QUIET" = 1 ]; then
echo "5.6.8" echo "5.6.9"
exit 0 exit 0
fi fi
echo "radare2-5.6.8 configuration script done with acr v2.0.0. echo "radare2-5.6.9 configuration script done with acr v2.0.0.
The 'Free Software Foundation' message is only for autodetection. The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>." Originally written by pancake <nopcode.org>."
exit 0 exit 0
@ -276,7 +276,7 @@ case $flag in
show_version ; ;; show_version ; ;;
-r|--r|--report) -r|--r|--report)
echo "PKGNAME: radare2" echo "PKGNAME: radare2"
echo "VERSION: 5.6.8" echo "VERSION: 5.6.9"
echo "LANGS: c" echo "LANGS: c"
echo "REQUIRED: libdl" echo "REQUIRED: libdl"
echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv>=1.0.0" echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv>=1.0.0"

View File

@ -1,5 +1,5 @@
PKGNAME radare2 PKGNAME radare2
VERSION 5.6.8 VERSION 5.6.9
CONTACT pancake ; pancake@nopcode.org CONTACT pancake ; pancake@nopcode.org
LANG_C! LANG_C!

View File

@ -21,7 +21,7 @@
"pancake <pancake@nopcode.org>" "pancake <pancake@nopcode.org>"
], ],
"name": "radare2-git", "name": "radare2-git",
"version": "5.6.8", "version": "5.6.9",
"bugs": { "bugs": {
"url": "https://github.com/radareorg/radare2/issues" "url": "https://github.com/radareorg/radare2/issues"
}, },

View File

@ -1,4 +1,4 @@
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.6.8') project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.6.9')
py3_exe = import('python').find_installation('python3') py3_exe = import('python').find_installation('python3')
git_exe = find_program('git', required: false) git_exe = find_program('git', required: false)