mirror of
https://github.com/radareorg/radare2
synced 2026-08-22 20:23:32 -04:00
After release version bump
This commit is contained in:
parent
84eb2f3263
commit
47a62350b5
15 changed files with 19 additions and 19 deletions
|
|
@ -5,7 +5,7 @@
|
|||
[](https://repology.org/project/radare2/versions) [](https://github.com/radareorg/radare2/actions/workflows/ci.yml?query=branch%3Amaster) [](https://github.com/radareorg/radare2/actions/workflows/build.yml?query=branch%3Amaster) [](https://github.com/radareorg/radare2/actions/workflows/tcc.yml)
|
||||
[](https://bestpractices.coreinfrastructure.org/projects/741) [](https://scan.coverity.com/projects/416) [](https://discord.gg/YBey7CR9jf)
|
||||
|
||||
Current git `master` branch is `6.2.0`, next release will be `6.2.1`.
|
||||
Current git `master` branch is `6.2.1`, next release will be `6.2.2`.
|
||||
|
||||
### Description
|
||||
|
||||
|
|
|
|||
10
configure
vendored
10
configure
vendored
|
|
@ -167,12 +167,12 @@ done
|
|||
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
|
||||
: ${INSTALL_MAN:=${INSTALL} -m 444}
|
||||
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
|
||||
PKGNAME='radare2' ; VERSION='6.2.0' ; VERSION_MAJOR=6; VERSION_MINOR=2; VERSION_PATCH=0; VERSION_NUMBER=60200; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
PKGNAME='radare2' ; VERSION='6.2.1' ; VERSION_MAJOR=6; VERSION_MINOR=2; VERSION_PATCH=1; VERSION_NUMBER=60201; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
}
|
||||
|
||||
show_usage() {
|
||||
cat <<EOF2
|
||||
'configure' configures radare2-6.2.0 to adapt to many kinds of systems.
|
||||
'configure' configures radare2-6.2.1 to adapt to many kinds of systems.
|
||||
|
||||
Usage: ./configure [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
|
@ -293,10 +293,10 @@ ocho() {
|
|||
|
||||
show_version() {
|
||||
if [ "$QUIET" = 1 ]; then
|
||||
echo "6.2.0"
|
||||
echo "6.2.1"
|
||||
exit 0
|
||||
fi
|
||||
echo "radare2-6.2.0 configuration script done with acr v2.2.8.
|
||||
echo "radare2-6.2.1 configuration script done with acr v2.2.8.
|
||||
The 'Free Software Foundation' message is only for autodetection.
|
||||
Originally written by pancake <nopcode.org>."
|
||||
exit 0
|
||||
|
|
@ -325,7 +325,7 @@ case $flag in
|
|||
show_version ; ;;
|
||||
-r|--r|--report)
|
||||
echo "PKGNAME: radare2"
|
||||
echo "VERSION: 6.2.0"
|
||||
echo "VERSION: 6.2.1"
|
||||
echo "AUTHOR: pancake"
|
||||
echo "EMAIL: pancake@nopcode.org"
|
||||
echo "DESCRIPTION: The UNIX-like reverse engineering toolkit"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PKGNAME radare2
|
||||
VERSION 6.2.0
|
||||
VERSION 6.2.1
|
||||
CONTACT pancake ; pancake@nopcode.org
|
||||
|
||||
DESCRIPTION The UNIX-like reverse engineering toolkit ;
|
||||
|
|
|
|||
2
dist/nix/package.nix
vendored
2
dist/nix/package.nix
vendored
|
|
@ -53,7 +53,7 @@ let
|
|||
in
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "radare2";
|
||||
version = "6.2.0";
|
||||
version = "6.2.1";
|
||||
|
||||
inherit src;
|
||||
|
||||
|
|
|
|||
2
dist/npm/package.json
vendored
2
dist/npm/package.json
vendored
|
|
@ -25,7 +25,7 @@
|
|||
"pancake <pancake@nopcode.org>"
|
||||
],
|
||||
"name": "radare2",
|
||||
"version": "6.2.0",
|
||||
"version": "6.2.1",
|
||||
"bugs": {
|
||||
"url": "https://github.com/radareorg/radare2/issues"
|
||||
},
|
||||
|
|
|
|||
2
dist/rpm/radare2.spec
vendored
2
dist/rpm/radare2.spec
vendored
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
Name: radare2
|
||||
# This version must be a valid and existing release number otherwise CI will fail
|
||||
Version: 6.1.8
|
||||
Version: 6.2.0
|
||||
Release: 1%{?dist}
|
||||
Summary: The %{name} reverse engineering framework
|
||||
Group: Applications/Engineering
|
||||
|
|
|
|||
2
dist/wapm/r2/wapm.toml
vendored
2
dist/wapm/r2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/r2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
readme = "README.md"
|
||||
license = "LGPL3"
|
||||
|
|
|
|||
2
dist/wapm/rabin2/wapm.toml
vendored
2
dist/wapm/rabin2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/rabin2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
license = "LGPL3"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
2
dist/wapm/radiff2/wapm.toml
vendored
2
dist/wapm/radiff2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/radiff2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
license = "LGPL3"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
2
dist/wapm/rafind2/wapm.toml
vendored
2
dist/wapm/rafind2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/rafind2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
license = "LGPL3"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
2
dist/wapm/ragg2/wapm.toml
vendored
2
dist/wapm/ragg2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/ragg2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
license = "LGPL3"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
2
dist/wapm/rahash2/wapm.toml
vendored
2
dist/wapm/rahash2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/rahash2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
license = "LGPL3"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
2
dist/wapm/rasm2/wapm.toml
vendored
2
dist/wapm/rasm2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/rasm2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
license = "LGPL3"
|
||||
readme = "README.md"
|
||||
|
|
|
|||
2
dist/wapm/rax2/wapm.toml
vendored
2
dist/wapm/rax2/wapm.toml
vendored
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "pancake/rax2"
|
||||
version = "6.2.0"
|
||||
version = "6.2.1"
|
||||
description = "Unix-Like Reverse Engineering Framework"
|
||||
readme = "README.md"
|
||||
license = "LGPL3"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.63', version : '6.2.0')
|
||||
project('radare2', 'c', license : 'LGPL3', meson_version : '>=0.63', version : '6.2.1')
|
||||
|
||||
# Global Arguments First
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue