Skip to content

Commit 48aefd6

Browse files
Change HtmlValidationOptions.HtmlValidatePackageVersion property default value to "8.29.0"
1 parent 16598ad commit 48aefd6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Upgrade Atata package reference to v3.4.0.
13+
- Change `HtmlValidationOptions.HtmlValidatePackageVersion` property default value to `"8.29.0"`.
1314

1415
## [3.1.0] - 2024-05-18
1516

src/Atata.HtmlValidation/HtmlValidationOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ public class HtmlValidationOptions
8383
/// <summary>
8484
/// Gets or sets the required version of "html-validate" NPM package.
8585
/// The required version will be installed if "html-validate" package is not installed or the installed version differs from the required one.
86-
/// The default value is <c>"8.18.1"</c>.
86+
/// The default value is <c>"8.29.0"</c>.
8787
/// Set <see langword="null"/> to disable the version check and use any pre-installed version.
8888
/// </summary>
89-
public string HtmlValidatePackageVersion { get; set; } = "8.18.1";
89+
public string HtmlValidatePackageVersion { get; set; } = "8.29.0";
9090

9191
/// <summary>
9292
/// Clones this instance with executing the action that can change some properties of the copy.

0 commit comments

Comments
 (0)