Skip to content

Commit

Permalink
Increase project version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YevgeniyShunevych committed Nov 17, 2022
1 parent cb405b2 commit 5d42b64
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ C#/.NET package for [Atata](https://github.com/atata-framework/atata) configurat

*The package targets .NET Standard 2.0, which supports .NET 5+, .NET Framework 4.6.1+ and .NET Core/Standard 2.0+.*

**[What's new in v2.1.0](https://atata.io/blog/2022/07/20/atata.configuration.json-2.1.0-released/)**
**[What's new in v2.2.0](https://atata.io/blog/2022/11/17/atata.configuration.json-2.2.0-released/)**

## Table of Contents

Expand Down Expand Up @@ -422,6 +422,8 @@ with help of `{env:VarName}` template insertions.
"logNUnitError": true,
"takeScreenshotOnNUnitError": true,
"takeScreenshotOnNUnitErrorTitle": "string",
"takePageSnapshotOnNUnitError": true,
"takePageSnapshotOnNUnitErrorTitle": "string",
"onCleanUpAddArtifactsToNUnitTestContext": true,
"onCleanUpAddDirectoryFilesToNUnitTestContext": "string",
"useNUnitAggregateAssertionStrategy": true, // Indicates to use NUnitAggregateAssertionStrategy as the aggregate assertion strategy.
Expand Down Expand Up @@ -449,6 +451,14 @@ with help of `{env:VarName}` template insertions.
}
],

"pageSnapshots": { // Configures page snapshots functionality.
"fileNameTemplate": "string",
"strategy": {
"type": "cdpOrPageSource", // Supports: "cdpOrPageSource", "pageSource", "cdp", and name of custom type implementing "Atata.IPageSnapshotTakeStrategy".
"{{strategyValueName}}": "value" // Any property or constructor parameter of strategy.
}
},

"eventSubscriptions": [
{
"eventType": "event type", // Optional.
Expand Down
4 changes: 2 additions & 2 deletions src/Atata.Configuration.Json/Atata.Configuration.Json.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Version>2.1.0</Version>
<Version>2.2.0</Version>
<Description>C#/.NET package for Atata configuration through JSON files.

The package targets .NET Standard 2.0, which supports .NET 5+, .NET Framework 4.6.1+ and .NET Core/Standard 2.0+.
Expand All @@ -19,7 +19,7 @@ Features:
<RepositoryUrl>https://github.com/atata-framework/atata-configuration-json</RepositoryUrl>
<PackageId>Atata.Configuration.Json</PackageId>
<PackageTags>atata automation testing test selenium webdriver browser configuration</PackageTags>
<PackageReleaseNotes>https://atata.io/blog/2022/07/20/atata.configuration.json-2.1.0-released/</PackageReleaseNotes>
<PackageReleaseNotes>https://atata.io/blog/2022/11/17/atata.configuration.json-2.2.0-released/</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/atata-framework/atata-configuration-json</PackageProjectUrl>
</PropertyGroup>

Expand Down

0 comments on commit 5d42b64

Please sign in to comment.