Skip to content

Commit

Permalink
Merge branch 'release/2.25.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
floeschau committed Aug 7, 2024
2 parents 63d3ad0 + 8daf17c commit 5872933
Show file tree
Hide file tree
Showing 182 changed files with 15,674 additions and 149 deletions.
4 changes: 2 additions & 2 deletions src/Stars.Console/Operations/CopyOperation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ private async Task ApplyProcessing(StacItemNode stacItemNode, IDestination desti
if (ExtractArchives)
stacNode = await processingService.ExtractArchiveAsync(stacItemNode, destination, storeService, ct);
if (Harvest)
stacNode = await processingService.ExtractMetadataAsync(stacItemNode as StacItemNode, destination, storeService, ct);
stacNode = await processingService.ExtractMetadataAsync(stacNode as StacItemNode, destination, storeService, ct);

if (AssetsFiltersOut != null && AssetsFiltersOut.Count() > 0)
{
Expand Down Expand Up @@ -349,7 +349,7 @@ private async Task<AssetImportReport> CopyAssetsFromContainer(IDestination desti
if (deliveryReport.AssetsExceptions.Count > 0)
throw new AggregateException(deliveryReport.AssetsExceptions.Values);
// no delivery but exception in quotation
if (deliveryReport.AssetsExceptions.Count == 0 && ( deliveryReport.Quotation.AssetsExceptions != null && deliveryReport.Quotation.AssetsExceptions.Count > 0))
if (deliveryReport.AssetsExceptions.Count == 0 && (deliveryReport.Quotation.AssetsExceptions != null && deliveryReport.Quotation.AssetsExceptions.Count > 0))
throw new AggregateException(deliveryReport.Quotation.AssetsExceptions.Values);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Stars.Console/Terradue.Stars.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0</TargetFrameworks>
<Version>2.24.6</Version>
<Version>2.25.0</Version>
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
<Description>Stars is a CLI for working with Spatio Temporal Catalog such as STAC but not only</Description>
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
Expand Down
Loading

0 comments on commit 5872933

Please sign in to comment.