Skip to content

Commit

Permalink
Release 5.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Mar 31, 2024
1 parent beae7d7 commit eaba7bb
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 17 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: iaito CI

env:
R2V: 5.8.8
R2V: 5.9.0

on:
push:
Expand Down Expand Up @@ -85,10 +85,10 @@ jobs:
python-version: 3.8.x
- name: homebrew dependencies
run: |
brew update
brew install pkg-config qt@5
brew update || true
brew install pkg-config qt@5 || true
brew unlink qt@5 || true
brew link --force qt@5
brew link --force qt@5 || true
pip3 install meson
pip3 install ninja
- name: install r2
Expand Down Expand Up @@ -144,10 +144,10 @@ jobs:
if: contains(matrix.os, 'macos')
run: |
brew update --preinstall # temporary workaround for https://github.com/Homebrew/homebrew-bundle/issues/751
brew install coreutils pkg-config
brew install pkg-config qt@5
brew install coreutils pkg-config || true
brew install pkg-config qt@5 || true
brew unlink qt@5 || true
brew link --force qt@5
brew link --force qt@5 || true
pip3 install meson
pip3 install ninja
- name: macos build
Expand Down
10 changes: 5 additions & 5 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='iaito' ; VERSION='5.8.9' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=9; VERSION_NUMBER=50809; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='iaito' ; VERSION='5.9.0' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=0; VERSION_NUMBER=50900; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

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

show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.8.9"
echo "5.9.0"
exit 0
fi
echo "iaito-5.8.9 configuration script done with acr v2.1.2.
echo "iaito-5.9.0 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
Expand Down Expand Up @@ -226,7 +226,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: iaito"
echo "VERSION: 5.8.9"
echo "VERSION: 5.9.0"
echo "AUTHOR: pancake"
echo "EMAIL: [email protected]"
echo "LANGS: c++"
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 iaito
VERSION 5.8.9
VERSION 5.9.0
CONTACT pancake ; [email protected]

LANG_CXX!
Expand Down
4 changes: 2 additions & 2 deletions src/Iaito.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ TEMPLATE = app
TARGET = iaito

IAITO_VERSION_MAJOR = 5
IAITO_VERSION_MINOR = 8
IAITO_VERSION_PATCH = 9
IAITO_VERSION_MINOR = 9
IAITO_VERSION_PATCH = 0

CONFIG+=app_bundle
# LIBS+= -dead_strip
Expand Down
5 changes: 3 additions & 2 deletions src/org.radare.iaito.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
<update_contact>pancake</update_contact>
<developer_name>radare2</developer_name>
<releases>
<release version="5.8.9" date="2023-3-15">
<release version="5.9.0" date="2024-3-31">
<description>
<p>Work in progress version in sync with r2-5.8.9</p>
<p>Stability fixes after lots of testing</p>
<p>Sync with r2-5.9, stay source compatible with 5.8</p>
</description>
</release>
<release version="5.8.8" date="2023-3-15">
Expand Down

0 comments on commit eaba7bb

Please sign in to comment.