Skip to content

Commit 44ee177

Browse files
Change HtmlValidationOptions.HtmlValidatePackageVersion property default value to "8.9.1"
1 parent 5a2d3eb commit 44ee177

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 to v2.14.0.
13+
- Change `HtmlValidationOptions.HtmlValidatePackageVersion` property default value to `"8.9.1"`.
1314

1415
## [2.4.0] - 2023-09-01
1516

src/Atata.HtmlValidation/HtmlValidationOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ public string RecommendedHtmlValidatePackageVersion
113113
/// <summary>
114114
/// Gets or sets the required version of "html-validate" NPM package.
115115
/// The required version will be installed if "html-validate" package is not installed or the installed version differs from the required one.
116-
/// The default value is <c>"8.3.0"</c>.
116+
/// The default value is <c>"8.9.1"</c>.
117117
/// Set <see langword="null"/> to disable the version check and use any pre-installed version.
118118
/// </summary>
119-
public string HtmlValidatePackageVersion { get; set; } = "8.3.0";
119+
public string HtmlValidatePackageVersion { get; set; } = "8.9.1";
120120

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

0 commit comments

Comments
 (0)