Bump version to v6.0.0-alpha.11

This commit is contained in:
2025-08-22 02:02:55 +01:00
parent c942f34315
commit 6b5e5322e5
5 changed files with 13 additions and 11 deletions

View File

@@ -12,6 +12,8 @@
<IsPackable>false</IsPackable>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
</PropertyGroup>
<ItemGroup>
<None Remove="Packaging.Targets"/>
@@ -100,7 +102,7 @@
</ItemGroup>
<PropertyGroup>
<PackageVersion>6.0.0-alpha10</PackageVersion>
<PackageVersion>6.0.0-alpha.11</PackageVersion>
<PackagePrefix>aaru</PackagePrefix>
<Authors>Natalia Portillo &lt;claunia@claunia.com&gt;</Authors>
<Section>net</Section>

View File

@@ -14,7 +14,7 @@
<key>CFBundleIdentifier</key>
<string>app.aaru</string>
<key>CFBundleShortVersionString</key>
<string>6.0.0-alpha10</string>
<string>6.0.0-alpha.11</string>
<key>CFBundleExecutable</key>
<string>aaru</string>
<key>LSExecutableArchitectures</key>

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Version>6.0.0-alpha10</Version>
<Version>6.0.0-alpha.11</Version>
<Company>Claunia.com</Company>
<Copyright>Copyright © 2011-2025 Natalia Portillo</Copyright>
<Product>Aaru Data Preservation Suite</Product>

View File

@@ -1,4 +1,4 @@
Aaru Data Preservation Suite v6.0.0-alpha10
Aaru Data Preservation Suite v6.0.0-alpha.11
Aaru

View File

@@ -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