Skip to content

Commit

Permalink
ready to release 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelmathot committed Dec 12, 2022
1 parent 6b56f04 commit 2d615da
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +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).

## [1.6.3](https://github.com/Terradue/DotNetStac/compare/1.6.2...1.6.3)
## [1.6.3](https://github.com/Terradue/DotNetStac/compare/1.6.3...1.6.3)

### Commits

- null geometry must be serialized [`6b56f04`](https://github.com/Terradue/DotNetStac/commit/6b56f0445446a92164c1bf596bc4887a3e43e40d)

## [1.6.3](https://github.com/Terradue/DotNetStac/compare/1.6.2...1.6.3) - 2022-12-02

### Commits

Expand Down
2 changes: 1 addition & 1 deletion src/DotNetStac.Test/Collection/CollectionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public void SerializeSimpleCollection()
{
var simpleItemJson = GetJson("Collection", "CanSerializeMinimalSample");
var simpleItem = StacConvert.Deserialize<StacItem>(simpleItemJson);
StacCollection simpleCollection = StacCollection.Create("simple-collection", "Simple Collection",
StacCollection simpleCollection = StacCollection.Create("simple-collection", "Simple Collection",
new Dictionary<Uri, StacItem> { { new Uri("item1", UriKind.Relative), simpleItem } }, "various");
var newJson = JsonConvert.SerializeObject(simpleCollection);
ValidateJson(newJson);
Expand Down
2 changes: 1 addition & 1 deletion src/DotNetStac.Test/Item/ItemTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public void CanSerializeExtendedSample()
// item.BoundingBoxes = new double[4] { -122.59750209, 37.48803556, -122.2880486, 37.613537207 };
item.BoundingBoxes = item.GetBoundingBoxFromGeometryExtent();



var actualJson = StacConvert.Serialize(item);

Expand Down
2 changes: 1 addition & 1 deletion src/DotNetStac/DotNetStac.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Title>DotNetStac</Title>
<Description>Terradue .Net library for working with any SpatioTemporal Asset Catalog</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<VersionPrefix>1.6.3</VersionPrefix>
<VersionPrefix>1.6.4</VersionPrefix>
<Authors>Emmanuel Mathot</Authors>
<Authors>emmanuelmathot</Authors>
<Company>Terradue</Company>
Expand Down

0 comments on commit 2d615da

Please sign in to comment.