Skip to content

Commit

Permalink
Merge branch 'release/1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelmathot committed Oct 26, 2022
2 parents 9c741e9 + 670bdc9 commit 3d11c93
Show file tree
Hide file tree
Showing 9 changed files with 2,175 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +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).

## [1.4.5](https://github.com/Terradue/DotNetStac/compare/1.4.4...1.4.5)
## [1.5.0](https://github.com/Terradue/DotNetStac/compare/1.4.5...1.5.0)

### Commits

- Added Links Collection interface [`7f5c482`](https://github.com/Terradue/DotNetStac/commit/7f5c482c9f455deb41488cf1ed05bd075cfa15be)

## [1.4.5](https://github.com/Terradue/DotNetStac/compare/1.4.4...1.4.5) - 2022-09-26

### Commits

- Proper assets cloning for Stac Item and Collection [`8f51df3`](https://github.com/Terradue/DotNetStac/commit/8f51df343ab2b1ef6bcb81cfa423e0630a90019a)
- Ready to release 1.4.5 [`5aea30b`](https://github.com/Terradue/DotNetStac/commit/5aea30b3c7735c2d241486635ea40833dfc5711c)
- Description field in stacItem [`34077e9`](https://github.com/Terradue/DotNetStac/commit/34077e9d4a1b1f2d303e32f1a3262103aa48f69b)

## [1.4.4](https://github.com/Terradue/DotNetStac/compare/1.4.3...1.4.4) - 2022-09-26
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

<h3 align="center">

![Build Status](https://github.com/Terradue/DotNetStac/actions/workflows/build.yaml/badge.svg?branch=release/1.4.5)
![Build Status](https://github.com/Terradue/DotNetStac/actions/workflows/build.yaml/badge.svg?branch=release/1.5.0)
[![NuGet](https://img.shields.io/nuget/vpre/DotNetStac)](https://www.nuget.org/packages/DotNetStac/)
[![codecov](https://codecov.io/gh/Terradue/DotNetStac/branch/release/1.4.5/graph/badge.svg)](https://codecov.io/gh/Terradue/DotNetStac)
[![codecov](https://codecov.io/gh/Terradue/DotNetStac/branch/release/1.5.0/graph/badge.svg)](https://codecov.io/gh/Terradue/DotNetStac)
[![Gitter](https://img.shields.io/gitter/room/SpatioTemporal-Asset-Catalog/Lobby?color=yellow)](https://gitter.im/SpatioTemporal-Asset-Catalog/Lobby)
[![License](https://img.shields.io/badge/license-AGPL3-blue.svg)](LICENSE)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Terradue/DotNetStac/master?filepath=example.ipynb)
Expand Down
24 changes: 24 additions & 0 deletions src/DotNetStac.Test/Extensions/RasterExtensionTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using GeoJSON.Net.Geometry;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Stac.Extensions.Eo;
using Xunit;

namespace Stac.Test.Extensions
{
public class RasterExtensionTests : TestBase
{
[Fact]
public void Iris(){
var json = GetJson("Extensions");

var item = StacConvert.Deserialize<IStacObject>(json);

Assert.IsType<StacItem>(item);
}

}
}
Loading

0 comments on commit 3d11c93

Please sign in to comment.