Skip to content

Commit 3bbe356

Browse files
author
Nicholas Bergsen
committed
New Release
1 parent cf7767b commit 3bbe356

File tree

13 files changed

+47
-41
lines changed

13 files changed

+47
-41
lines changed

Robots/Const.cs renamed to Nick.RobotsParser/Const.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Text;
44

5-
namespace RobotsSharpParser
5+
namespace RobotsParser
66
{
77
public class Const
88
{

Robots/NamespaceIgnoreantXmlTextReader.cs renamed to Nick.RobotsParser/NamespaceIgnoreantXmlTextReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading.Tasks;
33
using System.Xml;
44

5-
namespace RobotsSharpParser
5+
namespace RobotsParser
66
{
77
//This class is used to solve the issue of some sites using http and others using https
88
//in their sitemap files.

Robots/Robots.csproj renamed to Nick.RobotsParser/Nick.RobotsParser.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<PackageId>RobotsSharpParser</PackageId>
7+
<PackageId>RobotsParser</PackageId>
88
<Version>2.0.0</Version>
99
<Authors>Nicholas Bergesen</Authors>
1010
<Company>Nicholas Bergesen</Company>
11-
<PackageReleaseNotes>Update to net6 and minor bug fixes.</PackageReleaseNotes>
11+
<PackageReleaseNotes>
12+
- Handle all types of compression not just GZip
13+
- Improve sitemap parsing robustness.
14+
</PackageReleaseNotes>
1215
<PackageTags>robots,parse robots,web crawling,robots.txt,web scraping,spider,sitemap,sitemap parse</PackageTags>
1316
<Description>
1417
This client library enables working with Robots.txt.

Robots/RobotsNotloadedException.cs renamed to Nick.RobotsParser/RobotsNotloadedException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.Serialization;
33

4-
namespace RobotsSharpParser
4+
namespace RobotsParser
55
{
66
public class RobotsNotloadedException : Exception
77
{

Robots/RobotsParser.cs renamed to Nick.RobotsParser/RobotsParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Xml.Linq;
66
using System.Xml.Serialization;
77

8-
namespace RobotsSharpParser
8+
namespace RobotsParser
99
{
1010
public interface IRobots
1111
{

Robots/Useragent.cs renamed to Nick.RobotsParser/Useragent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Linq;
44

5-
namespace RobotsSharpParser
5+
namespace RobotsParser
66
{
77
public class Useragent
88
{
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)