Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

10 changes: 5 additions & 5 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# ipdata
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/ipdata/dotnet/blob/master/LICENSE) [![IPData](https://img.shields.io/nuget/v/IPData.svg)](https://www.nuget.org/packages/IPData/)

> **v3.0.0 Breaking Changes** — All public types have been renamed to follow .NET naming conventions for two-letter acronyms. See the [Migration Guide](#migrating-from-v2-to-v3) for details.
> **v3 Breaking Changes** — All public types have been renamed to follow .NET naming conventions for two-letter acronyms. See the [Migration Guide](#migrating-from-v2-to-v3) for details.

[ipdata.co](https://ipdata.co/) is a fast, reliable and clean service that allows you to look up the location of an IP Address and other data.

Expand Down Expand Up @@ -30,13 +30,13 @@
NuGet package install using package manager:

```bash
Install-Package IPData -Version 3.0.0
Install-Package IPData
```

NuGet package install using .NET CLI:

```bash
dotnet add package IPData --version 3.0.0
dotnet add package IPData
```

## Lookup
Expand Down Expand Up @@ -181,7 +181,7 @@ public class MyService

## Migrating from v2 to v3

v3.0.0 renames all public types to follow [.NET naming conventions](https://learn.microsoft.com/en-us/dotnet/standard/design-guidelines/capitalization-conventions) for two-letter acronyms. It also adds EU endpoint support and a `Company` lookup.
v3 renames all public types to follow [.NET naming conventions](https://learn.microsoft.com/en-us/dotnet/standard/design-guidelines/capitalization-conventions) for two-letter acronyms. It also adds EU endpoint support and a `Company` lookup.

### Renamed types

Expand All @@ -206,7 +206,7 @@ The package ID has changed from `IpData` to `IPData`:

```bash
dotnet remove package IpData
dotnet add package IPData --version 3.0.0
dotnet add package IPData
```

### New features in v3
Expand Down
Loading