Skip to content
This repository was archived by the owner on Jul 21, 2020. It is now read-only.

Commit 0794e69

Browse files
committed
v0.10.3 - add check for min lib = 0.7.1
1 parent 71aa8e1 commit 0794e69

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
### 0.10.2
1+
### 0.10.3

Runner/AssemblyLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class AssemblyLoader : IAssemblyLoader
3131
private const string GaugeLibAssembleName = "Gauge.CSharp.Lib";
3232
private readonly IAssemblyWrapper _assemblyWrapper;
3333
private readonly IFileWrapper _fileWrapper;
34-
private readonly Version _minimumLibversion = new Version("0.6.0");
34+
private readonly Version _minimumLibversion = new Version("0.7.1");
3535
private Assembly _targetLibAssembly;
3636

3737
public AssemblyLoader(string runnerBasePath, IAssemblyWrapper assemblyWrapper, IFileWrapper fileWrapper,

Runner/Exceptions/GaugeLibVersionMismatchException.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ namespace Gauge.CSharp.Runner.Exceptions
2424
public class GaugeLibVersionMismatchException : Exception
2525
{
2626
private const string ExceptionMessageFormat =
27-
"The version of Gauge.CSharp.Lib in the project is inconpatible with the version of Gauge CSharp plugin.\n Expecting minimum version: {0}, found {1}"
27+
"The version of Gauge.CSharp.Lib in the project is incompatible with the version of Gauge CSharp plugin.\n Expecting minimum version: {0}, found {1}.\n" +
28+
"Ensure latest version is used in your project. If you are using Nuget, try updating your dependencies."
2829
;
2930

3031
public GaugeLibVersionMismatchException(Version targetLibVersion, Version expectedLibVersion)

0 commit comments

Comments
 (0)