diff --git a/Excel-TDD - Blank - Inline.xlsm b/Excel-TDD - Blank - Inline.xlsm index 26e5092..e5a9733 100644 Binary files a/Excel-TDD - Blank - Inline.xlsm and b/Excel-TDD - Blank - Inline.xlsm differ diff --git a/Excel-TDD - Blank.xlsm b/Excel-TDD - Blank.xlsm index a625db1..f28bf13 100644 Binary files a/Excel-TDD - Blank.xlsm and b/Excel-TDD - Blank.xlsm differ diff --git a/build/dev.vbs b/build/dev.vbs index 52c10d9..922be03 100644 --- a/build/dev.vbs +++ b/build/dev.vbs @@ -81,7 +81,7 @@ Main Sub Main() ' On Error Resume Next - PrintLn "Excel-TDD v1.3.0 Development" + PrintLn "Excel-TDD v1.3.1 Development" ExcelWasOpen = OpenExcel(Excel) diff --git a/examples/Excel-TDD - Example - Inline.xlsm b/examples/Excel-TDD - Example - Inline.xlsm index be10eb6..8383f41 100644 Binary files a/examples/Excel-TDD - Example - Inline.xlsm and b/examples/Excel-TDD - Example - Inline.xlsm differ diff --git a/examples/Excel-TDD - Example - Runner.xlsm b/examples/Excel-TDD - Example - Runner.xlsm index c2ee95d..d050d71 100644 Binary files a/examples/Excel-TDD - Example - Runner.xlsm and b/examples/Excel-TDD - Example - Runner.xlsm differ diff --git a/specs/Excel-TDD - Specs.xlsm b/specs/Excel-TDD - Specs.xlsm index f1ebb4a..0c20acb 100644 Binary files a/specs/Excel-TDD - Specs.xlsm and b/specs/Excel-TDD - Specs.xlsm differ diff --git a/src/BlankIWBProxy.cls b/src/BlankIWBProxy.cls index 5b86a26..aafbb02 100644 --- a/src/BlankIWBProxy.cls +++ b/src/BlankIWBProxy.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = False '' -' BlankIWBProxy v1.3.0 +' BlankIWBProxy v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Blank implementation of IWBProxy diff --git a/src/DisplayRunner.bas b/src/DisplayRunner.bas index ea79b9c..ebcb02f 100644 --- a/src/DisplayRunner.bas +++ b/src/DisplayRunner.bas @@ -1,6 +1,6 @@ Attribute VB_Name = "DisplayRunner" '' -' DisplayRunner v1.3.0 +' DisplayRunner v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Runner with sheet output diff --git a/src/IScenario.cls b/src/IScenario.cls index 5848ea2..3a7cd61 100644 --- a/src/IScenario.cls +++ b/src/IScenario.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' IScenario v1.3.0 +' IScenario v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Interface for creating and running scenarios on workbooks diff --git a/src/IWBProxy.cls b/src/IWBProxy.cls index 57307e0..8605e00 100644 --- a/src/IWBProxy.cls +++ b/src/IWBProxy.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' IWBProxy v1.3.0 +' IWBProxy v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Interface for generic workbook proxies diff --git a/src/InlineRunner.bas b/src/InlineRunner.bas index 0dccb5a..51c5d2e 100644 --- a/src/InlineRunner.bas +++ b/src/InlineRunner.bas @@ -1,6 +1,6 @@ Attribute VB_Name = "InlineRunner" '' -' InlineRunner v1.3.0 +' InlineRunner v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Runner for outputting results of specs to Immediate window diff --git a/src/Scenario.cls b/src/Scenario.cls index 57f84c4..33c03cb 100644 --- a/src/Scenario.cls +++ b/src/Scenario.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' Scenario v1.3.0 +' Scenario v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Generic implementation of scenario diff --git a/src/SpecDefinition.cls b/src/SpecDefinition.cls index 8b6a2b5..78e9aa8 100644 --- a/src/SpecDefinition.cls +++ b/src/SpecDefinition.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' SpecDefinition v1.3.0 +' SpecDefinition v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Provides helpers and acts as workbook proxy diff --git a/src/SpecExpectation.cls b/src/SpecExpectation.cls index bc0e6df..e1fb327 100644 --- a/src/SpecExpectation.cls +++ b/src/SpecExpectation.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' SpecExpectation v1.3.0 +' SpecExpectation v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Provides various tests that can be performed for a provided value diff --git a/src/SpecHelpers.bas b/src/SpecHelpers.bas index db10745..edb1110 100644 --- a/src/SpecHelpers.bas +++ b/src/SpecHelpers.bas @@ -1,6 +1,6 @@ Attribute VB_Name = "SpecHelpers" '' -' SpecHelpers v1.3.0 +' SpecHelpers v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' General utilities for specs diff --git a/src/SpecSuite.cls b/src/SpecSuite.cls index 6e22087..198c1c4 100644 --- a/src/SpecSuite.cls +++ b/src/SpecSuite.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' SpecSuite v1.3.0 +' SpecSuite v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' A collection of specs with the workbook that they act on diff --git a/src/WBProxy.cls b/src/WBProxy.cls index 552939d..2ccae2a 100644 --- a/src/WBProxy.cls +++ b/src/WBProxy.cls @@ -8,7 +8,7 @@ Attribute VB_Creatable = False Attribute VB_PredeclaredId = False Attribute VB_Exposed = True '' -' WBProxy v1.3.0 +' WBProxy v1.3.1 ' (c) Tim Hall - https://github.com/timhall/Excel-TDD ' ' Generic implementation of workbook proxy