Skip to content

Commit

Permalink
Updated license date
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Feb 25, 2024
1 parent f11e802 commit e23734d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 15 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013 - 2023 AngleSharp
Copyright (c) 2013 - 2024 AngleSharp

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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ This project is supported by the [.NET Foundation](https://dotnetfoundation.org)

The MIT License (MIT)

Copyright (c) 2015 - 2023 AngleSharp
Copyright (c) 2015 - 2024 AngleSharp

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:

Expand Down
4 changes: 2 additions & 2 deletions nuke/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ protected override void OnBuildInitialized()

if (ScheduledTargets.Contains(Default))
{
Version = $"{Version}-ci-{buildNumber}";
Version = $"{Version}-ci.{buildNumber}";
}
else if (ScheduledTargets.Contains(PrePublish))
{
Version = $"{Version}-alpha-{buildNumber}";
Version = $"{Version}-beta.{buildNumber}";
}
}

Expand Down
10 changes: 0 additions & 10 deletions nuke/ReleaseNotesParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,6 @@
/// </remarks>
public sealed class ReleaseNotesParser
{
private readonly Regex _versionRegex;

/// <summary>
/// Initializes a new instance of the <see cref="ReleaseNotesParser"/> class.
/// </summary>
public ReleaseNotesParser()
{
_versionRegex = new Regex(@"(?<Version>\d+(\s*\.\s*\d+){0,3})(?<Release>-[a-z][0-9a-z-]*)?");
}

/// <summary>
/// Parses all release notes.
/// </summary>
Expand Down
3 changes: 2 additions & 1 deletion src/AngleSharp.Io.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
<authors>AngleSharp</authors>
<owners>Florian Rappl</owners>
<license type="expression">MIT</license>
<repository type="git" url="https://github.com/AngleSharp/AngleSharp.Io" />
<projectUrl>https://anglesharp.github.io</projectUrl>
<icon>logo.png</icon>
<readme>README.md</readme>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Providers additional requesters and IO helpers for AngleSharp.</description>
<releaseNotes>https://github.com/AngleSharp/AngleSharp.Io/blob/main/CHANGELOG.md</releaseNotes>
<copyright>Copyright 2016-2023, AngleSharp</copyright>
<copyright>Copyright 2016-2024, AngleSharp</copyright>
<tags>html html5 css css3 dom requester http https io filesystem storage httpclient cache</tags>
<dependencies>
<dependency id="AngleSharp" version="[1.0,2.0)" />
Expand Down

0 comments on commit e23734d

Please sign in to comment.