Skip to content

Commit 7c55e4b

Browse files
committed
Release 5.8.0 - codename: icebucket
1 parent a34ec63 commit 7c55e4b

File tree

6 files changed

+21
-17
lines changed

6 files changed

+21
-17
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,8 @@ jobs:
299299
pip install git+https://github.com/frida/meson.git@f7f25b19a8d71cebf8e2934733eb041eb6862eee
300300
pip install ninja r2pipe wget
301301
- name: Extract r2 version
302-
run: echo "{branch}={`sys/version.py -n`}" >> $GITHUB_OUTPUT
302+
shell: bash
303+
run: echo "branch=`sys/version.py -n`" >> $GITHUB_OUTPUT
303304
id: r2v
304305
- name: Build with meson + ninja
305306
shell: pwsh
@@ -314,7 +315,7 @@ jobs:
314315
# repository: radareorg/radare2-win-installer
315316
# path: ./radare2-win-installer
316317
# - name: Extract r2 version
317-
# run: echo "{branch}={`sys/version.py -n`}" >> $GITHUB_OUTPUT
318+
# run: echo "branch=`sys/version.py -n`" >> $GITHUB_OUTPUT
318319
# id: extract_version
319320
# - name: Create installer
320321
# shell: pwsh
@@ -393,7 +394,8 @@ jobs:
393394
pip install git+https://github.com/frida/meson.git@f7f25b19a8d71cebf8e2934733eb041eb6862eee
394395
pip install ninja r2pipe wget r2env
395396
- name: Extract r2 version
396-
run: echo "{branch}={`sys/version.py -n`}" >> $GITHUB_OUTPUT
397+
shell: bash
398+
run: echo "branch=`sys/version.py -n`" >> $GITHUB_OUTPUT
397399
id: r2v
398400
- name: Build with meson + ninja
399401
shell: cmd
@@ -443,7 +445,8 @@ jobs:
443445
pip install git+https://github.com/frida/meson.git@f7f25b19a8d71cebf8e2934733eb041eb6862eee
444446
pip install ninja r2pipe wget
445447
- name: Extract r2 version
446-
run: echo "{branch}={`sys/version.py -n`}" >> $GITHUB_OUTPUT
448+
shell: bash
449+
run: echo "branch=`sys/version.py -n`" >> $GITHUB_OUTPUT
447450
id: r2v
448451
- name: Build with meson + ninja
449452
shell: pwsh
@@ -539,10 +542,10 @@ jobs:
539542
run: |
540543
TAG="`git describe --exact-match --tags ${{ github.sha }} || true`"
541544
if [ -n "$TAG" ]; then
542-
echo "{tag}={$TAG}" >> $GITHUB_OUTPUT
543-
echo "{is}={yes}" >> $GITHUB_OUTPUT
545+
echo "tag=$TAG" >> $GITHUB_OUTPUT
546+
echo "is=yes" >> $GITHUB_OUTPUT
544547
else
545-
echo "{is}={no}" >> $GITHUB_OUTPUT
548+
echo "is=no" >> $GITHUB_OUTPUT
546549
fi
547550
id: release
548551

@@ -557,7 +560,8 @@ jobs:
557560
with:
558561
fetch-depth: 0 # Download all git history and tags
559562
- name: Extract r2 version
560-
run: echo "{branch}={`sys/version.py -n`}" >> $GITHUB_OUTPUT
563+
shell: bash
564+
run: echo "branch=`sys/version.py -n`" >> $GITHUB_OUTPUT
561565
id: r2v
562566
- name: Prepare release notes
563567
run: ./sys/release-notes.sh | tee ./RELEASE_NOTES.md

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![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/) [![TODO](https://img.shields.io/github/search/radareorg/radare2/TODO.svg)](https://github.com/radareorg/radare2/search?q=TODO) [![GLOBALS](https://img.shields.io/github/search/radareorg/radare2/R_TH_LOCAL.svg)](https://github.com/radareorg/radare2/search?q=R_TH_LOCAL)[![XXX](https://img.shields.io/github/search/radareorg/radare2/XXX.svg)](https://github.com/radareorg/radare2/search?q=XXX) [![Discord](https://badgen.net/discord/members/YBey7CR9jf)](https://discord.gg/YBey7CR9jf)
77

88
See the [Releases](https://github.com/radareorg/radare2/releases) page for
9-
downloads. The current git `master` branch is `5.7.9`, next will be `5.8.0`.
9+
downloads. The current git `master` branch is `5.8.1`, next will be `5.8.2`.
1010

1111
* Since r2-5.6.0 all the patch releases are [abi stable](doc/abi.md)
1212
* Odd patch versions are used in git builds only, releases use even numbers

configure

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,12 @@ done
136136
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
137137
: ${INSTALL_MAN:=${INSTALL} -m 444}
138138
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
139-
PKGNAME='radare2' ; VERSION='5.7.9' ; VERSION_MAJOR=5; VERSION_MINOR=7; VERSION_PATCH=9; VERSION_NUMBER=50709; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
139+
PKGNAME='radare2' ; VERSION='5.8.0' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=0; VERSION_NUMBER=50800; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
140140
}
141141

142142
show_usage() {
143143
cat <<EOF2
144-
'configure' configures radare2-5.7.9 to adapt to many kinds of systems.
144+
'configure' configures radare2-5.8.0 to adapt to many kinds of systems.
145145
146146
Usage: ./configure [OPTION]... [VAR=VALUE]...
147147
@@ -248,10 +248,10 @@ ocho() {
248248

249249
show_version() {
250250
if [ "$QUIET" = 1 ]; then
251-
echo "5.7.9"
251+
echo "5.8.0"
252252
exit 0
253253
fi
254-
echo "radare2-5.7.9 configuration script done with acr v2.0.0.
254+
echo "radare2-5.8.0 configuration script done with acr v2.0.0.
255255
The 'Free Software Foundation' message is only for autodetection.
256256
Originally written by pancake <nopcode.org>."
257257
exit 0
@@ -280,7 +280,7 @@ case $flag in
280280
show_version ; ;;
281281
-r|--r|--report)
282282
echo "PKGNAME: radare2"
283-
echo "VERSION: 5.7.9"
283+
echo "VERSION: 5.8.0"
284284
echo "LANGS: c"
285285
echo "REQUIRED: libdl"
286286
echo "OPTIONAL: libmagic libz libzip libxxhash libssl liblibuv>=1.0.0"

configure.acr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKGNAME radare2
2-
VERSION 5.7.9
2+
VERSION 5.8.0
33
CONTACT pancake ; [email protected]
44

55
LANG_C!

dist/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"pancake <[email protected]>"
2626
],
2727
"name": "radare2-git",
28-
"version": "5.7.9",
28+
"version": "5.8.0",
2929
"bugs": {
3030
"url": "https://github.com/radareorg/radare2/issues"
3131
},

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.7.9')
1+
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.49', version : '5.8.0')
22

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

0 commit comments

Comments
 (0)