Releases: maxmind/GeoIP2-dotnet
Releases · maxmind/GeoIP2-dotnet
2.7.0-beta1
- .NET Core support. Switched to
dotnet/clifor building. Pull request by
Adeel Mujahid. GitHub #60. - Updated documentation to reflect that the accuracy radius is now included
in City.
2.6.0
2.6.0-beta3
2.6.0-beta2
- Parameterless endpoint methods were added to
WebServiceClient. These
return the record for the requesting IP address using themeendpoint as
documented in the web services API documentation. - The target framework is now .NET 4.5 rather than 4.5.2 in order to work
better with Mono. GitHub #44.
2.6.0-beta1
- Upgrade MaxMindb.Db reader to 2.0.0-beta1. This includes significant
performance improvements.
2.5.0: Drop .NET 4.0 Support
- IMPORTANT: The target framework is now 4.5.2. Microsoft is ending support
for 4.0, 4.5, and 4.5.1 on January 12, 2016. Removing support for these
frameworks allows us to remove the dependency on the BCL libraries and fixes
several outstanding issues. Closes #38, #39, #40, and #42. - The assembly version was bumped to 2.5.0.
- Classes subclassing
NamedEntitynow have a default locale ofen. This
allows theNameproperty to be used (for English names) when the object is
deserialized from JSON. Closes #41. - The
localeparameter for theDatabaseReaderandWebServiceClient
constructors is now anIEnumerable<string>rather than aList<string>. - The tests now use NUnit 3.
2.4.0
2.4.0-beta1: Web Service Async Support, No RestSharp, Strong Name
- Async support was added to the
WebServiceClient. Each web-service end
point now has a corresponding *Async(ip)` method. GitHub #1. - Use of RestSharp was replaced by
HttpWebRequestfor synchronous HTTP
requests andHttpClientfor asynchronous requests. Microsoft BCL libraries
are used to provideasync/awaitandHttpClientsupport on .NET 4.0.
GitHub #33. - The library now has a strong name.
2.3.1: New MaxMind.Db version and exception serialization fix
- Upgrade to MaxMind.Db 1.1.0.
- Fix serialization on exceptions.
2.3.1-beta1: Update Dependencies
- Upgrade to Json.NET 7.0.1.
- Upgrade to MaxMind.Db 1.1.0-beta1. This release includes a number of
significant improvements for the memory-mapped file mode.