Skip to content

Commit e23734d

Browse files
committed
Updated license date
1 parent f11e802 commit e23734d

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
@@ -148,7 +148,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)
148148

149149
The MIT License (MIT)
150150

151-
Copyright (c) 2015 - 2023 AngleSharp
151+
Copyright (c) 2015 - 2024 AngleSharp
152152

153153
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:
154154

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.Io.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.Io" />
910
<projectUrl>https://anglesharp.github.io</projectUrl>
1011
<icon>logo.png</icon>
1112
<readme>README.md</readme>
1213
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1314
<description>Providers additional requesters and IO helpers for AngleSharp.</description>
1415
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Io/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 io filesystem storage httpclient cache</tags>
1718
<dependencies>
1819
<dependency id="AngleSharp" version="[1.0,2.0)" />

0 commit comments

Comments
 (0)