Skip to content

Commit

Permalink
Version 2.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirk Rombauts committed Apr 20, 2018
1 parent cbc2dc8 commit 59ffd41
Show file tree
Hide file tree
Showing 187 changed files with 3,955 additions and 3,350 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt

### Security

## [2.18.1] - 2018-04-20

### Fixed

- More robust scenario outline example mapping by using code from SpecFlow ([519](https://github.com/picklesdoc/pickles/pull/519)) (by [@dirkrombauts](https://github.com/dirkrombauts), based on an idea by [@janosmagyar](https://github.com/janosmagyar))
- Only the table of the examples in a scenario outline should have test results ([515](https://github.com/picklesdoc/pickles/pull/515)) (by [@spacehole1](https://github.com/spacehole1))

## [2.18.0] - 2018-02-02

### Added
Expand Down
37 changes: 36 additions & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,39 @@ If the Work includes a "NOTICE" text file as part of its distribution, then any

9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS
END OF TERMS AND CONDITIONS


Pickles contains code of SpecFlow (http://specflow.org/). That code is licensed under these terms:

SpecFlow Licence (New BSD License)

Copyright (c) 2009, TechTalk

Disclaimer:
* The initial codebase of Specflow was written by TechTalk employees.
No 3rd party code was included.
* No code of customer projects was used to create this project.
* TechTalk had the full rights to publish the initial codebase.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the SpecFlow project nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL TECHTALK OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set "picklesVersion=2.18.0"
set "picklesVersion=2.18.1"

cls

Expand Down
16 changes: 12 additions & 4 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,25 +36,33 @@ Target "AssemblyInfo" (fun _ ->
Target "BuildCmd" (fun _ ->
!! "src/Pickles/Pickles.CommandLine/Pickles.CommandLine.csproj"
|> MSBuildRelease cmdDir "Build"
|> Log "AppBuild-Output: "
|> Log "AppBuild-Output: ";

CopyFiles cmdDir [ "./LICENSE.txt"; ];
)

Target "BuildMsBuild" (fun _ ->
!! "src/Pickles/Pickles.MsBuild/Pickles.MsBuild.csproj"
|> MSBuildRelease msBuildDir "Build"
|> Log "AppBuild-Output: "
|> Log "AppBuild-Output: ";

CopyFiles msBuildDir [ "./LICENSE.txt"; ];
)

Target "BuildPowerShell" (fun _ ->
!! "src/Pickles/Pickles.PowerShell/Pickles.PowerShell.csproj"
|> MSBuildRelease powerShellDir "Build"
|> Log "AppBuild-Output: "
|> Log "AppBuild-Output: ";

CopyFiles powerShellDir [ "./LICENSE.txt"; ];
)

Target "BuildGui" (fun _ ->
!! "src/Pickles/Pickles.UserInterface/Pickles.UserInterface.csproj"
|> MSBuildRelease guiDir "Build"
|> Log "AppBuild-Output: "
|> Log "AppBuild-Output: ";

CopyFiles guiDir [ "./LICENSE.txt"; ];
)

Target "BuildTest" (fun _ ->
Expand Down
2 changes: 1 addition & 1 deletion chocolatey.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Target "CreatePackage GUI" (fun _ ->
guiDir + "Gherkin.dll";
guiDir + "MahApps.Metro.dll";
guiDir + "MarkdownDeep.dll";
guiDir + "Microsoft.Practices.ServiceLocation.dll";
guiDir + "CommonServiceLocator.dll";
guiDir + "Newtonsoft.Json.dll";
guiDir + "NLog.dll";
guiDir + "NlogViewer.dll";
Expand Down
2 changes: 1 addition & 1 deletion chocolatey/picklesui.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Optionally, *Pickles* can **integrate test results**, so that your stakeholders
<file src="Gherkin.dll" target="tools" />
<file src="MahApps.Metro.dll" target="tools" />
<file src="MarkdownDeep.dll" target="tools" />
<file src="Microsoft.Practices.ServiceLocation.dll" target="tools" />
<file src="CommonServiceLocator.dll" target="tools" />
<file src="Newtonsoft.Json.dll" target="tools" />
<file src="NLog.dll" target="tools" />
<file src="NlogViewer.dll" target="tools" />
Expand Down
Loading

0 comments on commit 59ffd41

Please sign in to comment.