Skip to content

Commit 5b18f61

Browse files
committed
Updated license date
1 parent ff19a95 commit 5b18f61

File tree

5 files changed

+6
-15
lines changed

5 files changed

+6
-15
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013 - 2023 AngleSharp
3+
Copyright (c) 2013 - 2024 AngleSharp
44

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)
7474

7575
The MIT License (MIT)
7676

77-
Copyright (c) 2020 - 2023 AngleSharp
77+
Copyright (c) 2020 - 2024 AngleSharp
7878

7979
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8080

nuke/Build.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ protected override void OnBuildInitialized()
8989

9090
if (ScheduledTargets.Contains(Default))
9191
{
92-
Version = $"{Version}-ci-{buildNumber}";
92+
Version = $"{Version}-ci.{buildNumber}";
9393
}
9494
else if (ScheduledTargets.Contains(PrePublish))
9595
{
96-
Version = $"{Version}-alpha-{buildNumber}";
96+
Version = $"{Version}-beta.{buildNumber}";
9797
}
9898
}
9999

nuke/ReleaseNotesParser.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,6 @@
1717
/// </remarks>
1818
public sealed class ReleaseNotesParser
1919
{
20-
private readonly Regex _versionRegex;
21-
22-
/// <summary>
23-
/// Initializes a new instance of the <see cref="ReleaseNotesParser"/> class.
24-
/// </summary>
25-
public ReleaseNotesParser()
26-
{
27-
_versionRegex = new Regex(@"(?<Version>\d+(\s*\.\s*\d+){0,3})(?<Release>-[a-z][0-9a-z-]*)?");
28-
}
29-
3020
/// <summary>
3121
/// Parses all release notes.
3222
/// </summary>

src/AngleSharp.Xml.nuspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
<authors>AngleSharp</authors>
77
<owners>Florian Rappl</owners>
88
<license type="expression">MIT</license>
9+
<repository type="git" url="https://github.com/AngleSharp/AngleSharp.Xml" />
910
<projectUrl>https://anglesharp.github.io</projectUrl>
1011
<icon>logo.png</icon>
1112
<readme>README.md</readme>
1213
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1314
<description>Adds a powerful XML and DTD parser to AngleSharp.</description>
1415
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Xml/blob/main/CHANGELOG.md</releaseNotes>
15-
<copyright>Copyright 2016-2023, AngleSharp</copyright>
16+
<copyright>Copyright 2016-2024, AngleSharp</copyright>
1617
<tags>html html5 css css3 dom requester http https xml dtd</tags>
1718
<dependencies>
1819
<dependency id="AngleSharp" version="[1.0,2.0)" />

0 commit comments

Comments
 (0)