Skip to content

Commit

Permalink
Merge branch 'hotfix/2.24.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelmathot committed Jun 17, 2024
2 parents dc2acc5 + 9e5f078 commit 63d3ad0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ 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.24.5](https://github.com/Terradue/Stars/compare/2.24.4...2.24.5) - 2024-06-17

### Commits

- Bump version to 2.24.5 [`3db7ea0`](https://github.com/Terradue/Stars/commit/3db7ea0864b7da6ee456addcbca7ea3fa6039650)

## [2.24.4](https://github.com/Terradue/Stars/compare/2.24.3...2.24.4) - 2024-06-17

### Commits

- Bump version to 2.24.4 [`b70a8ee`](https://github.com/Terradue/Stars/commit/b70a8ee3f113a82964a1e725a5966af0db1f5bae)

## [2.24.2](https://github.com/Terradue/Stars/compare/2.24.1...2.24.2) - 2024-06-13

### Commits
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.5</Version>
<Version>2.24.6</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
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.24.5</Version>
<Version>2.24.6</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/Store/StacStoreService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ private void RemoveDuplicateLinks(StacNode stacNode)
IStacObject stacObject = stacNode.StacObject;
if (stacObject == null) return;

var links = stacObject.Links.GroupBy(link => link.Uri).Select(grp => grp.First()).ToList();
var links = stacObject.Links.GroupBy(link => (link.Uri, link.RelationshipType)).Select(grp => grp.First()).ToList();
stacObject.Links.Clear();
foreach (var link in links)
stacObject.Links.Add(link);
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.24.5</Version>
<Version>2.24.6</Version>
<!-- <VersionSuffix>beta.8</VersionSuffix> -->
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<AssemblyName>Terradue.Stars.Services</AssemblyName>
Expand Down

0 comments on commit 63d3ad0

Please sign in to comment.