After release version bump

This commit is contained in:
pancake 2024-04-01 14:07:14 +02:00
parent 1c7e7952a9
commit 6ca20d77cc
9 changed files with 16 additions and 16 deletions

View File

@ -6,7 +6,7 @@
[![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) [![Discord](https://badgen.net/discord/members/YBey7CR9jf)](https://discord.gg/YBey7CR9jf)
See the [Releases](https://github.com/radareorg/radare2/releases) page for
downloads. The current git `master` branch is `5.9.0`, next will be `5.9.1`.
downloads. The current git `master` branch is `5.9.1`, next will be `5.9.2`.
* Since r2-5.6.0 all the patch releases are [abi stable](doc/abi.md)
* Odd patch versions are used in git builds only, releases use even numbers

View File

@ -31,6 +31,6 @@ fi
[ -z "$EDITOR" ] && EDITOR=vim
$EDITOR README.md
$EDITOR dist/npm/package.json
$EDITOR dist/wapm/r2/wapm.toml
$EDITOR dist/wapm/rax2/wapm.toml
$EDITOR dist/wapm/rasm2/wapm.toml
for a in dist/wapm/*/*.toml ; do
$EDITOR $a
done

12
configure vendored
View File

@ -143,12 +143,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='radare2' ; VERSION='5.9.0' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=0; VERSION_NUMBER=50900; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
PKGNAME='radare2' ; VERSION='5.9.1' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=1; VERSION_NUMBER=50901; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
}
show_usage() {
cat <<EOF2
'configure' configures radare2-5.9.0 to adapt to many kinds of systems.
'configure' configures radare2-5.9.1 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
@ -259,10 +259,10 @@ ocho() {
show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.9.0"
echo "5.9.1"
exit 0
fi
echo "radare2-5.9.0 configuration script done with acr v2.1.2.
echo "radare2-5.9.1 configuration script done with acr v2.1.2.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
@ -291,7 +291,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: radare2"
echo "VERSION: 5.9.0"
echo "VERSION: 5.9.1"
echo "AUTHOR: pancake"
echo "EMAIL: pancake@nopcode.org"
echo "DESCRIPTION: The UNIX-like reverse engineering toolkit"
@ -910,7 +910,7 @@ pcgen() {
PCNAME="${1}" ; shift
REQUIRES="$@"
echo "generating ${PCFILE}" >&2
echo "generating ${PCFILE}" > /dev/stderr
echo "prefix=${PREFIX}" > ${PCFILE}
echo "exec_prefix=\${prefix}" >> ${PCFILE}
echo "libdir=${PKGCFG_LIBDIR}" >> ${PCFILE}

View File

@ -1,5 +1,5 @@
PKGNAME radare2
VERSION 5.9.0
VERSION 5.9.1
CONTACT pancake ; pancake@nopcode.org
DESCRIPTION The UNIX-like reverse engineering toolkit ;

View File

@ -25,7 +25,7 @@
"pancake <pancake@nopcode.org>"
],
"name": "radare2",
"version": "5.9.0",
"version": "5.9.1",
"bugs": {
"url": "https://github.com/radareorg/radare2/issues"
},

View File

@ -1,6 +1,6 @@
[package]
name = "pancake/r2"
version = "5.9.0"
version = "5.9.1"
description = "Unix-Like Reverse Engineering Framework"
readme = "README.md"
license = "LGPL3"

View File

@ -1,6 +1,6 @@
[package]
name = "pancake/rasm2"
version = "5.9.0"
version = "5.9.1"
description = "Unix-Like Reverse Engineering Framework"
license = "LGPL3"
readme = "README.md"

View File

@ -1,6 +1,6 @@
[package]
name = "pancake/rax2"
version = "5.9.0"
version = "5.9.1"
description = "Unix-Like Reverse Engineering Framework"
readme = "README.md"
license = "LGPL3"

View File

@ -1,4 +1,4 @@
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.50', version : '5.9.0')
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.50', version : '5.9.1')
py3_exe = import('python').find_installation('python3')
gen_py = '@0@/libr/syscall/d/gen.py'.format(meson.current_source_dir())