Skip to content

Commit

Permalink
Release 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojciech authored and Wojciech committed Mar 28, 2022
1 parent aab7b71 commit cde38a0
Show file tree
Hide file tree
Showing 13 changed files with 380 additions and 364 deletions.
6 changes: 3 additions & 3 deletions AssemblyVersion.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;

[assembly: AssemblyCopyright("Copyright © Wojciech Kotlarski 2013-2021")]
[assembly: AssemblyVersion("3.4.0")]
[assembly: AssemblyFileVersion("3.4.0")]
[assembly: AssemblyInformationalVersion("3.4.0")]
[assembly: AssemblyVersion("3.4.1")]
[assembly: AssemblyFileVersion("3.4.1")]
[assembly: AssemblyInformationalVersion("3.4.1")]
3 changes: 3 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ LightBDD

Version [next]
----------------------------------------

Version 3.4.1
----------------------------------------
+ #248 (Framework)(Change) Improved MessageListener.EnsureReceived() to return friendly message dumps for common types
+ #252 (LightBdd.XUnit2)(Change) Added LightBddScopeAttribute.DiagnosticMessageSink property

Expand Down
2 changes: 1 addition & 1 deletion QuickStart.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
LightBDD Quick Start:
#####################################

Thanks for installing LightBDD version 3.4.0!
Thanks for installing LightBDD version 3.4.1!

If you are new LightBDD user, please feel free to explore the LightBDD Wiki page, especially Quick Start: https://github.com/LightBDD/LightBDD/wiki/Quick-Start
If you just updated LightBDD from previous version, please read Wiki page about migrating LightBDD: https://github.com/LightBDD/LightBDD/wiki/Migrating-LightBDD-Versions
Expand Down
67 changes: 34 additions & 33 deletions examples/ExampleReports/FeaturesReport.html

Large diffs are not rendered by default.

229 changes: 115 additions & 114 deletions examples/ExampleReports/FeaturesReport.txt

Large diffs are not rendered by default.

421 changes: 216 additions & 205 deletions examples/ExampleReports/FeaturesReport.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion make/current_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.0
3.4.1
4 changes: 2 additions & 2 deletions src/Common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<Copyright>Copyright © Wojciech Kotlarski 2013-2021</Copyright>
<VersionPrefix>3.4.0</VersionPrefix>
<VersionPrefix>3.4.1</VersionPrefix>
<Authors>Wojciech Kotlarski</Authors>
<Company>https://github.com/LightBDD/LightBDD</Company>
<PackageIcon>lightbdd.png</PackageIcon>
Expand All @@ -14,7 +14,7 @@
<PackageOutputPath>$(SolutionDir)\output</PackageOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>bdd;tdd;testing;framework;behavior driven development;acceptance criteria</PackageTags>
<PackageReleaseNotes>Release details on: https://github.com/LightBDD/LightBDD/wiki/What-Is-New#lightbdd-340</PackageReleaseNotes>
<PackageReleaseNotes>Release details on: https://github.com/LightBDD/LightBDD/wiki/What-Is-New#lightbdd-341</PackageReleaseNotes>
<IsPackable>true</IsPackable>
<IsTestProject>false</IsTestProject>
<LangVersion>latest</LangVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="fe1ca06b-95ef-41a1-8e09-fe903b2945a4" Version="3.4.0" Language="en-US" Publisher="Wojciech Kotlarski" />
<Identity Id="fe1ca06b-95ef-41a1-8e09-fe903b2945a4" Version="3.4.1" Language="en-US" Publisher="Wojciech Kotlarski" />
<DisplayName>LightBDD for Visual Studio</DisplayName>
<Description xml:space="preserve">A collection of Project Templates, Item Templates and Code Snippets for LightBDD testing framework.</Description>
<MoreInfo>https://github.com/LightBDD/LightBDD</MoreInfo>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net5</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LightBDD.Fixie2" Version="3.4.0" />
<PackageReference Include="LightBDD.Fixie2" Version="3.4.1" />
<PackageReference Include="Fixie" Version="2.2.2" />
<DotNetCliToolReference Include="Fixie.Console" Version="2.2.2" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net5</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LightBDD.MsTest2" Version="3.4.0" />
<PackageReference Include="LightBDD.MsTest2" Version="3.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net5</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LightBDD.NUnit3" Version="3.4.0" />
<PackageReference Include="LightBDD.NUnit3" Version="3.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net5</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LightBDD.XUnit2" Version="3.4.0" />
<PackageReference Include="LightBDD.XUnit2" Version="3.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" >
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit cde38a0

Please sign in to comment.