Skip to content

Commit

Permalink
preparing release
Browse files Browse the repository at this point in the history
  • Loading branch information
csoltenborn committed Oct 12, 2019
1 parent 21282f9 commit 283b7f1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GoogleTestAdapter/Packaging.GTA/VsPackage.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata minClientVersion="2.8">
<id>GoogleTestAdapter</id>
<version>0.17.0</version>
<version>0.17.1</version>
<title>Google Test Adapter</title>
<authors>Christian Soltenborn</authors>
<owners>Christian Soltenborn</owners>
Expand Down
3 changes: 2 additions & 1 deletion GoogleTestAdapter/VsPackage.GTA/ReleaseNotes/History.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ static History()
{ new Version(0, 15, 0), new DateTime(2019, 3, 9) },
{ new Version(0, 16, 0), new DateTime(2019, 4, 28) },
{ new Version(0, 16, 1), new DateTime(2019, 5, 4) },
{ new Version(0, 17, 0), new DateTime(2019, 10, 6) }
{ new Version(0, 17, 0), new DateTime(2019, 10, 6) },
{ new Version(0, 17, 1), new DateTime(2019, 10, 12) }
};
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* bugfix: adapter settings and debugging were broken if option *Behavior for missing test results* was set to *Report as not found* ([#298](https://github.com/csoltenborn/GoogleTestAdapter/issues/298))
3 changes: 3 additions & 0 deletions GoogleTestAdapter/VsPackage.GTA/VsPackage.GTA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,9 @@
<Content Include="Resources\ReleaseNotes\0.17.0.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Resources\ReleaseNotes\0.17.1.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<VSCTCompile Include="GoogleTestExtensionOptionsPage.vsct">
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ Please note that I will see your donations as appreciation of my work so far and

#### Installation

[![Download from Visual Studio Marketplace](https://img.shields.io/badge/vs_marketplace-v0.17.0-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter)
[![Download from Visual Studio Marketplace](https://img.shields.io/badge/vs_marketplace-v0.17.1-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter)
[![Download from NuGet](https://img.shields.io/nuget/vpre/GoogleTestAdapter.svg?colorB=0c7dbe&label=nuget)](https://www.nuget.org/packages/GoogleTestAdapter)
[![Download from GitHub](https://img.shields.io/github/release/csoltenborn/GoogleTestAdapter/all.svg?colorB=0c7dbe&label=github)](https://github.com/csoltenborn/GoogleTestAdapter/releases)

Google Test Adapter can be installed in three ways:

* Install through the Visual Studio Marketplace at *Tools/Extensions and Updates* - search for *Google Test Adapter*.
* Download and launch the VSIX installer from either the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter) or [GitHub](https://github.com/csoltenborn/GoogleTestAdapter/releases/download/v0.17.0/GoogleTestAdapter-0.17.0.vsix)
* Download and launch the VSIX installer from either the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=ChristianSoltenborn.GoogleTestAdapter) or [GitHub](https://github.com/csoltenborn/GoogleTestAdapter/releases/download/v0.17.1/GoogleTestAdapter-0.17.1.vsix)
* Add a NuGet dependency to the [Google test adapter nuget package](https://www.nuget.org/packages/GoogleTestAdapter/) to your Google Test projects. Note, however, that Visual Studio integration is limited this way: VS can discover and run tests, but no debugging, options or toolbar will be available; configuration is only possible through solution config files (see below).

After restarting VS, your tests will be displayed in the Test Explorer at build completion time. If no or not all tests show up, have a look at the [trouble shooting section](#trouble_shooting).
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.17.0.{build}
version: 0.17.1.{build}
os:
- Visual Studio 2017
configuration: Release
Expand Down

0 comments on commit 283b7f1

Please sign in to comment.