Skip to content

Commit

Permalink
Increase project version to 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
YevgeniyShunevych committed Jan 11, 2024
1 parent 5e13fc6 commit 0815016
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,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.6.0](https://atata.io/blog/2023/12/06/atata.configuration.json-2.6.0-released/)**
**[What's new in v2.7.0](https://atata.io/blog/2024/01/11/atata.configuration.json-2.7.0-released/)**

## Table of Contents

Expand Down Expand Up @@ -408,6 +408,7 @@ with help of `{env:VarName}` template insertions.
"aggregateAssertionExceptionType": "string", // Replaces Atata.AggregateAssertionException type with custom type, e.g.: "MyApp.AggregateAssertionException, MyApp.Library".
"aggregateAssertionStrategyType": "string", // Sets the type name of the aggregate assertion strategy. The type should implement IAggregateAssertionStrategy.
"warningReportStrategyType": "string", // Sets the type name of the strategy for warning assertion reporting. The type should implement IWarningReportStrategy.
"assertionFailureReportStrategyType": "string", // Sets the type name of the strategy for assertion failure reporting. The type should implement IAssertionFailureReportStrategy.

"domTestIdAttributeName": "data-testid",
"domTestIdAttributeDefaultCase": "kebab",
Expand All @@ -418,14 +419,16 @@ with help of `{env:VarName}` template insertions.
"assemblyNamePatternToFindEventTypes": "regex_string",
"assemblyNamePatternToFindEventHandlerTypes": "regex_string",

"useAllNUnitFeatures": true, // Indicates to enable all NUnit features for Atata.
"useAllNUnitFeatures": true, // Indicates to enable all Atata features for NUnit.
"useSpecFlowNUnitFeatures": true, // Indicates to enable all Atata features for SpecFlow+NUnit.
// Or enable particular NUnit configuration options:
"useNUnitTestName": true,
"useNUnitTestSuiteName": true,
"useNUnitTestSuiteType": true,
"onCleanUpAddDirectoryFilesToNUnitTestContext": "string",
"useNUnitAggregateAssertionStrategy": true, // Indicates to use NUnitAggregateAssertionStrategy as the aggregate assertion strategy.
"useNUnitWarningReportStrategy": true, // Indicates to use NUnitWarningReportStrategy as the strategy for warning assertion reporting.
"useNUnitAssertionFailureReportStrategy": true, // Indicates to use NUnitAssertionFailureReportStrategy as the strategy for assertion failure reporting.

"logConsumers": [ // Configures list of log consumers.
{
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 @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Version>2.6.0</Version>
<Version>2.7.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 @@ -21,7 +21,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/2023/12/06/atata.configuration.json-2.6.0-released/</PackageReleaseNotes>
<PackageReleaseNotes>https://atata.io/blog/2024/01/11/atata.configuration.json-2.7.0-released/</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/atata-framework/atata-configuration-json</PackageProjectUrl>
</PropertyGroup>

Expand Down

0 comments on commit 0815016

Please sign in to comment.