diff --git a/README.md b/README.md index 73c860bf772b1..fc54df96544bf 100644 --- a/README.md +++ b/README.md @@ -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.8.3`, next will be `5.8.4`. +downloads. The current git `master` branch is `5.8.5`, next will be `5.8.6`. * 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 diff --git a/configure b/configure index 305125b157297..74834ad397869 100755 --- a/configure +++ b/configure @@ -141,12 +141,12 @@ done : ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s} : ${INSTALL_MAN:=${INSTALL} -m 444} : ${INSTALL_LIB:=${INSTALL} -m 755 -c} - PKGNAME='radare2' ; VERSION='5.8.3' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=3; VERSION_NUMBER=50803; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake " ; + PKGNAME='radare2' ; VERSION='5.8.4' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=4; VERSION_NUMBER=50804; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake " ; } show_usage() { cat <." exit 0 @@ -287,7 +287,7 @@ case $flag in show_version ; ;; -r|--r|--report) echo "PKGNAME: radare2" -echo "VERSION: 5.8.3" +echo "VERSION: 5.8.4" echo "AUTHOR: pancake" echo "EMAIL: pancake@nopcode.org" echo "DESCRIPTION: The UNIX-like reverse engineering toolkit" diff --git a/configure.acr b/configure.acr index 6b5d7f26fb769..fa14fe61542b1 100644 --- a/configure.acr +++ b/configure.acr @@ -1,5 +1,5 @@ PKGNAME radare2 -VERSION 5.8.3 +VERSION 5.8.4 CONTACT pancake ; pancake@nopcode.org DESCRIPTION The UNIX-like reverse engineering toolkit ; diff --git a/dist/npm/package.json b/dist/npm/package.json index 254190ec80678..b0324348174de 100644 --- a/dist/npm/package.json +++ b/dist/npm/package.json @@ -25,7 +25,7 @@ "pancake " ], "name": "radare2-git", - "version": "5.8.3", + "version": "5.8.4", "bugs": { "url": "https://github.com/radareorg/radare2/issues" }, diff --git a/meson.build b/meson.build index 9c0ab6060f7e3..7d7f2b2dc3c0e 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.50', version : '5.8.3') +project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.50', version : '5.8.4') py3_exe = import('python').find_installation('python3') gen_py = '@0@/libr/syscall/d/gen.py'.format(meson.current_source_dir())