From ce12a15eea5847be5ba01101f760613970110f5f Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Wed, 27 Jan 2016 16:53:39 +0100 Subject: [PATCH 1/4] Fix for SpecFlow 2 compatibility --- .../Pickles.TestFrameworks/MsTest/MsTestSingleResults.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pickles/Pickles.TestFrameworks/MsTest/MsTestSingleResults.cs b/src/Pickles/Pickles.TestFrameworks/MsTest/MsTestSingleResults.cs index a2976dcb7..488c81c35 100644 --- a/src/Pickles/Pickles.TestFrameworks/MsTest/MsTestSingleResults.cs +++ b/src/Pickles/Pickles.TestFrameworks/MsTest/MsTestSingleResults.cs @@ -121,7 +121,7 @@ where FeatureNamePropertyExistsWith(queriedFeatureName, among: scenarioPropertie select scenario; var scenarioOutlineExecutionIds = from scenario in allScenariosForAFeature - where NameOf(scenario) == queriedScenarioOutlineName + where NameOf(scenario).StartsWith(queriedScenarioOutlineName) select ScenarioExecutionIdOf(scenario); TestResult result = scenarioOutlineExecutionIds.Select(this.GetExecutionResult).Merge(); From 2b30a55aa515efd037b7ac860c385551d113d5a7 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Wed, 27 Jan 2016 16:56:07 +0100 Subject: [PATCH 2/4] Update change log --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a2680b58..103eb04f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ## [Unreleased] +- Compatibility fixes with SpecFlow v2 ([#276](https://github.com/picklesdoc/pickles/issues/276)) (by [@dirkrombauts](https://github.com/dirkrombauts)). + ## [2.2.1] - 2016-01-25 ### Changed From 7e87278dae1a9bf40ef5c6d2f78fa619722d45d4 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Wed, 27 Jan 2016 17:10:59 +0100 Subject: [PATCH 3/4] Version bump (2.3.0) --- build.bat | 2 +- src/Pickles/VersionInfo.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.bat b/build.bat index 449048478..bde61e9e6 100644 --- a/build.bat +++ b/build.bat @@ -1,5 +1,5 @@ @echo off -set "picklesVersion=2.2.1" +set "picklesVersion=2.3.0" cls diff --git a/src/Pickles/VersionInfo.cs b/src/Pickles/VersionInfo.cs index 820ab5371..616f5ca22 100644 --- a/src/Pickles/VersionInfo.cs +++ b/src/Pickles/VersionInfo.cs @@ -8,10 +8,10 @@ [assembly: AssemblyTrademarkAttribute("")] [assembly: AssemblyCultureAttribute("")] [assembly: ComVisibleAttribute(false)] -[assembly: AssemblyVersionAttribute("2.2.1")] -[assembly: AssemblyFileVersionAttribute("2.2.1")] +[assembly: AssemblyVersionAttribute("2.3.0")] +[assembly: AssemblyFileVersionAttribute("2.3.0")] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "2.2.1"; + internal const string Version = "2.3.0"; } } From 35266a78db19643b33b0c0872943715048a1ac23 Mon Sep 17 00:00:00 2001 From: Dirk Rombauts Date: Wed, 27 Jan 2016 17:12:25 +0100 Subject: [PATCH 4/4] Update change log --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 103eb04f1..5d62b6b12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,11 @@ This project adheres to [Semantic Versioning](http://semver.org). We consider th This document is formatted according to the principles of [Keep A CHANGELOG](http://keepachangelog.com). -## [Unreleased] +## [2.3.0] - 2016-01-27 -- Compatibility fixes with SpecFlow v2 ([#276](https://github.com/picklesdoc/pickles/issues/276)) (by [@dirkrombauts](https://github.com/dirkrombauts)). +### Added + +- Support for SpecFlow v2 ([#276](https://github.com/picklesdoc/pickles/issues/276)) (by [@dirkrombauts](https://github.com/dirkrombauts)). ## [2.2.1] - 2016-01-25