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

View File

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

View File

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

View File

@@ -13,17 +13,17 @@ do
dotnet publish -f net10.0 -r ${distro} -c ${conf} dotnet publish -f net10.0 -r ${distro} -c ${conf}
# Package the Linux packages (stopped working) # Package the Linux packages (stopped working)
if [[ ${distro} == alpine* ]] || [[ ${distro} == linux* ]]; then # if [[ ${distro} == alpine* ]] || [[ ${distro} == linux* ]]; then
dotnet tarball -f net10.0 -r ${distro} -c ${conf} -o ../build # dotnet tarball -f net10.0 -r ${distro} -c ${conf} -o ../build
dotnet rpm -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 # dotnet deb -f net10.0 -r ${distro} -c ${conf} -o ../build
elif [[ ${distro} == win* ]] || [[ ${distro} == osx* ]]; then # elif [[ ${distro} == win* ]] || [[ ${distro} == osx* ]]; then
dotnet zip -f net10.0 -r ${distro} -c ${conf} -o ../build # dotnet zip -f net10.0 -r ${distro} -c ${conf} -o ../build
# elif [[ ${distro} == rhel* ]] || [[ ${distro} == sles* ]]; then # elif [[ ${distro} == rhel* ]] || [[ ${distro} == sles* ]]; then
# pkg="rpm" # pkg="rpm"
# else # else
# pkg="deb" # pkg="deb"
fi # fi
done done
done done