Skip to content

Commit 283b7f1

Browse files
committed
preparing release
1 parent 21282f9 commit 283b7f1

6 files changed

Lines changed: 10 additions & 5 deletions

File tree

GoogleTestAdapter/Packaging.GTA/VsPackage.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata minClientVersion="2.8">
44
<id>GoogleTestAdapter</id>
5-
<version>0.17.0</version>
5+
<version>0.17.1</version>
66
<title>Google Test Adapter</title>
77
<authors>Christian Soltenborn</authors>
88
<owners>Christian Soltenborn</owners>

GoogleTestAdapter/VsPackage.GTA/ReleaseNotes/History.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ static History()
6868
{ new Version(0, 15, 0), new DateTime(2019, 3, 9) },
6969
{ new Version(0, 16, 0), new DateTime(2019, 4, 28) },
7070
{ new Version(0, 16, 1), new DateTime(2019, 5, 4) },
71-
{ new Version(0, 17, 0), new DateTime(2019, 10, 6) }
71+
{ new Version(0, 17, 0), new DateTime(2019, 10, 6) },
72+
{ new Version(0, 17, 1), new DateTime(2019, 10, 12) }
7273
};
7374
}
7475
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
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))

GoogleTestAdapter/VsPackage.GTA/VsPackage.GTA.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,9 @@
238238
<Content Include="Resources\ReleaseNotes\0.17.0.md">
239239
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
240240
</Content>
241+
<Content Include="Resources\ReleaseNotes\0.17.1.md">
242+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
243+
</Content>
241244
</ItemGroup>
242245
<ItemGroup>
243246
<VSCTCompile Include="GoogleTestExtensionOptionsPage.vsct">

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ Please note that I will see your donations as appreciation of my work so far and
5252

5353
#### Installation
5454

55-
[![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)
55+
[![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)
5656
[![Download from NuGet](https://img.shields.io/nuget/vpre/GoogleTestAdapter.svg?colorB=0c7dbe&label=nuget)](https://www.nuget.org/packages/GoogleTestAdapter)
5757
[![Download from GitHub](https://img.shields.io/github/release/csoltenborn/GoogleTestAdapter/all.svg?colorB=0c7dbe&label=github)](https://github.com/csoltenborn/GoogleTestAdapter/releases)
5858

5959
Google Test Adapter can be installed in three ways:
6060

6161
* Install through the Visual Studio Marketplace at *Tools/Extensions and Updates* - search for *Google Test Adapter*.
62-
* 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)
62+
* 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)
6363
* 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).
6464

6565
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).

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.17.0.{build}
1+
version: 0.17.1.{build}
22
os:
33
- Visual Studio 2017
44
configuration: Release

0 commit comments

Comments
 (0)