From 6b5e5322e5ff193f7ab20c159a06981fdda43d1e Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 22 Aug 2025 02:02:55 +0100 Subject: [PATCH] Bump version to v6.0.0-alpha.11 --- Aaru/Aaru.csproj | 4 +++- Aaru/Info.plist | 2 +- Directory.Build.props | 2 +- README.md | 2 +- build.sh | 14 +++++++------- 5 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Aaru/Aaru.csproj b/Aaru/Aaru.csproj index 08892b990..36c8e01da 100644 --- a/Aaru/Aaru.csproj +++ b/Aaru/Aaru.csproj @@ -12,6 +12,8 @@ false true true + true + true @@ -100,7 +102,7 @@ - 6.0.0-alpha10 + 6.0.0-alpha.11 aaru Natalia Portillo <claunia@claunia.com>
net
diff --git a/Aaru/Info.plist b/Aaru/Info.plist index 9a2889c3d..57a632011 100644 --- a/Aaru/Info.plist +++ b/Aaru/Info.plist @@ -14,7 +14,7 @@ CFBundleIdentifier app.aaru CFBundleShortVersionString - 6.0.0-alpha10 + 6.0.0-alpha.11 CFBundleExecutable aaru LSExecutableArchitectures diff --git a/Directory.Build.props b/Directory.Build.props index 46df2bc4c..03fc30338 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ net10.0 true - 6.0.0-alpha10 + 6.0.0-alpha.11 Claunia.com Copyright © 2011-2025 Natalia Portillo Aaru Data Preservation Suite diff --git a/README.md b/README.md index ec7271983..a4d13ea1e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Aaru Data Preservation Suite v6.0.0-alpha10 +Aaru Data Preservation Suite v6.0.0-alpha.11 Aaru diff --git a/build.sh b/build.sh index e7b4db38d..5dfdf8e03 100755 --- a/build.sh +++ b/build.sh @@ -13,17 +13,17 @@ do dotnet publish -f net10.0 -r ${distro} -c ${conf} # Package the Linux packages (stopped working) - if [[ ${distro} == alpine* ]] || [[ ${distro} == linux* ]]; then - dotnet tarball -f net10.0 -r ${distro} -c ${conf} -o ../build - dotnet rpm -f net10.0 -r ${distro} -c ${conf} -o ../build - dotnet deb -f net10.0 -r ${distro} -c ${conf} -o ../build - elif [[ ${distro} == win* ]] || [[ ${distro} == osx* ]]; then - dotnet zip -f net10.0 -r ${distro} -c ${conf} -o ../build +# if [[ ${distro} == alpine* ]] || [[ ${distro} == linux* ]]; then +# dotnet tarball -f net10.0 -r ${distro} -c ${conf} -o ../build +# dotnet rpm -f net10.0 -r ${distro} -c ${conf} -o ../build +# dotnet deb -f net10.0 -r ${distro} -c ${conf} -o ../build +# elif [[ ${distro} == win* ]] || [[ ${distro} == osx* ]]; then +# dotnet zip -f net10.0 -r ${distro} -c ${conf} -o ../build # elif [[ ${distro} == rhel* ]] || [[ ${distro} == sles* ]]; then # pkg="rpm" # else # pkg="deb" - fi +# fi done done