Skip to content

Commit 64b294c

Browse files
Merge pull request #30 from ipdata/claude/migrate-ipdata-references-TUE1b
Claude/migrate ipdata references tue1b
2 parents 8f53806 + 4f0df95 commit 64b294c

5 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ _Put an `x` in the boxes that apply_
1515

1616
_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._
1717

18-
- [ ] I have read the [CONTRIBUTING](https://github.com/alexkhil/IPData/blob/master/.github/CONTRIBUTING.md) doc
18+
- [ ] I have read the [CONTRIBUTING](https://github.com/ipdata/dotnet/blob/master/.github/CONTRIBUTING.md) doc
1919
- [ ] Lint and unit tests pass locally with my changes
2020
- [ ] I have added tests that prove my fix is effective or that my feature works
2121
- [ ] I have added necessary documentation (if appropriate)

.github/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# ipdata
3-
[![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/)
3+
[![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/)
44

55
> **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.
66
@@ -197,8 +197,8 @@ We use [SemVer] for versioning. For the versions available, see the tags on this
197197
This project is licensed under the MIT License - see the [LICENSE.md][LICENSE] file for details
198198

199199

200-
[AzureStatus]: https://dev.azure.com/alexkhildev/IPData/_apis/build/status/gated?branchName=master
200+
[AzureStatus]: https://dev.azure.com/ipdata/dotnet/_apis/build/status/gated?branchName=master
201201
[IPDataLogo]: https://image.ibb.co/iDQdUS/ipdatalogo.png
202202
[SemVer]: http://semver.org/
203-
[CONTRIBUTING]: https://github.com/alexkhil/IPData/blob/master/.github/CONTRIBUTING.md
204-
[LICENSE]: https://github.com/alexkhil/IPData/blob/master/LICENSE
203+
[CONTRIBUTING]: https://github.com/ipdata/dotnet/blob/master/.github/CONTRIBUTING.md
204+
[LICENSE]: https://github.com/ipdata/dotnet/blob/master/LICENSE

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# MIT License
22

33
Copyright (c) 2018 Alex Khil
4+
Copyright (c) 2020 ipdata
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

src/IPData/IPData.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
<Description>C# library to gather information for an IP using ipdata.co</Description>
88
<Authors>IPData Community</Authors>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
10-
<PackageProjectUrl>https://github.com/alexkhil/IPData</PackageProjectUrl>
11-
<RepositoryUrl>https://github.com/alexkhil/IPData</RepositoryUrl>
10+
<PackageProjectUrl>https://github.com/ipdata/dotnet</PackageProjectUrl>
11+
<RepositoryUrl>https://github.com/ipdata/dotnet</RepositoryUrl>
1212
<RepositoryType>git</RepositoryType>
1313
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<PackageIconUrl>https://image.ibb.co/iDQdUS/ipdatalogo.png</PackageIconUrl>
1616
<ApplicationIcon>ipdata.ico</ApplicationIcon>
1717
<Copyright>IPData Community</Copyright>
1818
<Win32Resource />
19-
<PackageReleaseNotes>Release notes are at https://github.com/alexkhil/IPData/releases</PackageReleaseNotes>
19+
<PackageReleaseNotes>Release notes are at https://github.com/ipdata/dotnet/releases</PackageReleaseNotes>
2020
<SignAssembly>false</SignAssembly>
2121
<DelaySign>false</DelaySign>
2222
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

src/IPData/IPData.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<owners>IPData Contributors</owners>
88
<requireLicenseAcceptance>false</requireLicenseAcceptance>
99
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
10-
<projectUrl>https://github.com/alexkhil/IPData</projectUrl>
10+
<projectUrl>https://github.com/ipdata/dotnet</projectUrl>
1111
<iconUrl>https://image.ibb.co/iDQdUS/ipdatalogo.png</iconUrl>
1212
<description>C# library to gather information for an IP using ipdata.co</description>
13-
<releaseNotes>Release notes are at https://github.com/alexkhil/IPData/releases </releaseNotes>
13+
<releaseNotes>Release notes are at https://github.com/ipdata/dotnet/releases </releaseNotes>
1414
<copyright>IPData Community</copyright>
1515
<tags>ip ipdata csharp</tags>
16-
<repository type="git" url="https://github.com/alexkhil/IPData" />
16+
<repository type="git" url="https://github.com/ipdata/dotnet" />
1717
<dependencies>
1818
<group targetFramework=".NETStandard2.0">
1919
<dependency id="Newtonsoft.Json" version="12.0.2" exclude="Build,Analyzers" />

0 commit comments

Comments
 (0)