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
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ _Put an `x` in the boxes that apply_

_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._

- [ ] I have read the [CONTRIBUTING](https://github.com/alexkhil/IPData/blob/master/.github/CONTRIBUTING.md) doc
- [ ] I have read the [CONTRIBUTING](https://github.com/ipdata/dotnet/blob/master/.github/CONTRIBUTING.md) doc
- [ ] Lint and unit tests pass locally with my changes
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added necessary documentation (if appropriate)
Expand Down
8 changes: 4 additions & 4 deletions .github/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

# ipdata
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/alexkhil/IPData/blob/master/LICENSE) [![IPData](https://img.shields.io/nuget/v/IPData.svg)](https://www.nuget.org/packages/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.

Expand Down Expand Up @@ -197,8 +197,8 @@ We use [SemVer] for versioning. For the versions available, see the tags on this
This project is licensed under the MIT License - see the [LICENSE.md][LICENSE] file for details


[AzureStatus]: https://dev.azure.com/alexkhildev/IPData/_apis/build/status/gated?branchName=master
[AzureStatus]: https://dev.azure.com/ipdata/dotnet/_apis/build/status/gated?branchName=master
[IPDataLogo]: https://image.ibb.co/iDQdUS/ipdatalogo.png
[SemVer]: http://semver.org/
[CONTRIBUTING]: https://github.com/alexkhil/IPData/blob/master/.github/CONTRIBUTING.md
[LICENSE]: https://github.com/alexkhil/IPData/blob/master/LICENSE
[CONTRIBUTING]: https://github.com/ipdata/dotnet/blob/master/.github/CONTRIBUTING.md
[LICENSE]: https://github.com/ipdata/dotnet/blob/master/LICENSE
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# MIT License

Copyright (c) 2018 Alex Khil
Copyright (c) 2020 ipdata

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions src/IPData/IPData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
<Description>C# library to gather information for an IP using ipdata.co</Description>
<Authors>IPData Community</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/alexkhil/IPData</PackageProjectUrl>
<RepositoryUrl>https://github.com/alexkhil/IPData</RepositoryUrl>
<PackageProjectUrl>https://github.com/ipdata/dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/ipdata/dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>https://image.ibb.co/iDQdUS/ipdatalogo.png</PackageIconUrl>
<ApplicationIcon>ipdata.ico</ApplicationIcon>
<Copyright>IPData Community</Copyright>
<Win32Resource />
<PackageReleaseNotes>Release notes are at https://github.com/alexkhil/IPData/releases</PackageReleaseNotes>
<PackageReleaseNotes>Release notes are at https://github.com/ipdata/dotnet/releases</PackageReleaseNotes>
<SignAssembly>false</SignAssembly>
<DelaySign>false</DelaySign>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
Expand Down
6 changes: 3 additions & 3 deletions src/IPData/IPData.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<owners>IPData Contributors</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
<projectUrl>https://github.com/alexkhil/IPData</projectUrl>
<projectUrl>https://github.com/ipdata/dotnet</projectUrl>
<iconUrl>https://image.ibb.co/iDQdUS/ipdatalogo.png</iconUrl>
<description>C# library to gather information for an IP using ipdata.co</description>
<releaseNotes>Release notes are at https://github.com/alexkhil/IPData/releases </releaseNotes>
<releaseNotes>Release notes are at https://github.com/ipdata/dotnet/releases </releaseNotes>
<copyright>IPData Community</copyright>
<tags>ip ipdata csharp</tags>
<repository type="git" url="https://github.com/alexkhil/IPData" />
<repository type="git" url="https://github.com/ipdata/dotnet" />
<dependencies>
<group targetFramework=".NETStandard2.0">
<dependency id="Newtonsoft.Json" version="12.0.2" exclude="Build,Analyzers" />
Expand Down
Loading