Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/JustinCanton/Geo.NET into…
Browse files Browse the repository at this point in the history
… develop
  • Loading branch information
JustinCanton committed Aug 2, 2024
2 parents e5b2434 + b0e40cf commit da3bcab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.

## [2.1.1](https://github.com/JustinCanton/Geo.NET/compare/2.1.0...2.1.1) (2024-08-02)
### Bug Fixes
- **security**: fixing a security vulnerability in the System.Text.Json nuget ([c700660](https://github.com/JustinCanton/Geo.NET/commit/c700660bda59ec5946a95d0ff4de69633946ef6e))
- **arcgis**: fixing the Rank property to be a float instead of an int ([#108](https://github.com/JustinCanton/Geo.NET/issues/108)) ([0187c59](https://github.com/JustinCanton/Geo.NET/commit/0187c59815e344b5bcfd6a8a59cf3676b2806684))

## [2.1.0](https://github.com/JustinCanton/Geo.NET/compare/2.0.0...2.1.0) (2024-05-20)
### Features
- **radar**: adding support for the Radar geocoding API ([#100](https://github.com/JustinCanton/Geo.NET/issues/100)) ([448b087](https://github.com/JustinCanton/Geo.NET/commit/448b0876a0fb36fc74f348752e7dd77f63f3f7dd))
Expand Down
2 changes: 1 addition & 1 deletion src/Geo.ArcGIS/Models/Responses/LocationAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public class LocationAttribute : Attribute
/// Gets or sets the rank of the location.
/// </summary>
[JsonPropertyName("Rank")]
public int Rank { get; set; }
public float Rank { get; set; }

/// <summary>
/// Gets or sets the additional building information for a location.
Expand Down
2 changes: 1 addition & 1 deletion src/Geo.Core/Geo.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Localization" Version="8.0.0" />
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
Expand Down

0 comments on commit da3bcab

Please sign in to comment.