Skip to content

Commit

Permalink
Merge branch 'hotfix/2.15.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelmathot committed Sep 1, 2023
2 parents 3811577 + de609d8 commit 356813c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [2.15.4](https://github.com/Terradue/Stars/compare/2.15.3...2.15.4)
## [2.15.5](https://github.com/Terradue/Stars/compare/2.15.4...2.15.5)

Feature/esacpe 1597
### Commits

- Fix nre fox DataHub when only icon [`5004100`](https://github.com/Terradue/Stars/commit/500410096624d77312501e471cb5937761cede49)

## [2.15.4](https://github.com/Terradue/Stars/compare/2.15.3...2.15.4) - 2023-08-29

### Merged

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.15.4</Version>
<Version>2.15.5</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
4 changes: 3 additions & 1 deletion src/Stars.Data/Routers/DataHubResultItemRoutable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ public override IReadOnlyDictionary<string, IAsset> Assets
{
get
{
if (assets != null)
if (assets != null && assets.Count > 0)
return assets;
assets = new Dictionary<string, IAsset>();

var enclosureAccess = supplier.Wrapper.GetEnclosureAccess(osItem);
try
{
Expand Down
2 changes: 1 addition & 1 deletion src/Stars.Data/Terradue.Stars.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ProjectName>Terradue.Stars.Data</ProjectName>
<Title>Terradue.Stars.Data</Title>
<Description>Collection of data Plugins for Terradue.Stars</Description>
<Version>2.15.4</Version>
<Version>2.15.5</Version>
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<NoWarn>NU1603</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion src/Stars.Services/Terradue.Stars.Services.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Title>Terradue.Stars</Title>
<Description>Stars is a set of services for working with Spatio Temporal Catalog such as STAC but not only</Description>
<Version>2.15.4</Version>
<Version>2.15.5</Version>
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<AssemblyName>Terradue.Stars.Services</AssemblyName>
Expand Down

0 comments on commit 356813c

Please sign in to comment.