Skip to content
This repository has been archived by the owner on Jul 27, 2019. It is now read-only.

Commit

Permalink
Merge pull request #203 from nunit/release-0.4
Browse files Browse the repository at this point in the history
Prepare for release 0.4
  • Loading branch information
CharliePoole authored Jun 21, 2017
2 parents ede31e6 + 784c757 commit c38883f
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 14 deletions.
25 changes: 24 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
NUnit-Gui 0.3 - January 1, 2017
NUnit-Gui 0.4 - June 21, 2017

Issues Resolved

* 14 Display relative path in GUI's tree (option)
* 26 Explicit tests are executed if a category is excluded
* 112 Add icons to solution
* 127 Decide Framework and C# levels for the gui project
* 130 Corrupted NUNit30Settings file
* 131 Initial Tree Display setting is not honored
* 140 Add support for Multiple Asserts
* 154 Change default to run in a separate process, allowing 32-bit processes to work among other things
* 155 Cannot drag and drop test assemblies
* 156 Fix RunTree image for transparency.
* 163 No validation of tracelevel
* 164 Missing escaping of content of CDATA in AddXmlCDataSection
* 170 Test assembly locked
* 173 Test result message and stacktrace not always updated
* 176 Upgrade to version 3.6.1 of engine
* 179 Compiling the project on a machine with only VS 2017
* 184 The path is not of a legal form exception on load
* 192 Nuget package for engine doesn't have agent config files

NUnit-Gui 0.3 - January 1, 2017

Issues Resolved

Expand Down
3 changes: 1 addition & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var configuration = Argument("configuration", "Debug");
// SET PACKAGE VERSION
//////////////////////////////////////////////////////////////////////

var version = "0.3";
var version = "0.4";
var modifier = "";

var isAppveyor = BuildSystem.IsRunningOnAppVeyor;
Expand Down Expand Up @@ -172,7 +172,6 @@ Task("PackageZip")
BIN_DIR + "nunit.uikit.pdb",
BIN_DIR + "nunit.engine.api.dll",
BIN_DIR + "nunit.engine.dll",
BIN_DIR + "nunit.engine.addins",
BIN_DIR + "Mono.Cecil.dll",
BIN_DIR + "nunit-agent.exe",
BIN_DIR + "nunit-agent.exe.config",
Expand Down
4 changes: 2 additions & 2 deletions src/nunit-gui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("0.3.0.0")]
[assembly: AssemblyFileVersion("0.3.0.0")]
[assembly: AssemblyVersion("0.4.0.0")]
[assembly: AssemblyFileVersion("0.4.0.0")]
3 changes: 0 additions & 3 deletions src/nunit-gui/nunit-gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,6 @@
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="nunit.engine.addins">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 0 additions & 4 deletions src/nunit-gui/nunit.engine.addins

This file was deleted.

4 changes: 2 additions & 2 deletions src/nunit.uikit/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("0.3.0.0")]
[assembly: AssemblyFileVersion("0.3.0.0")]
[assembly: AssemblyVersion("0.4.0.0")]
[assembly: AssemblyFileVersion("0.4.0.0")]

0 comments on commit c38883f

Please sign in to comment.